UNPKG

cucumon

Version:

Cucumber Gherkin Feature file parser with custom additional features

10 lines (9 loc) 235 B
class Section{ constructor(keyword, statement, lineNumber){ this.keyword = keyword; this.statement = statement; this.description = ""; this.lineNumber = lineNumber; } } module.exports = Section;