UNPKG

cucumon

Version:

Cucumber Gherkin Feature file parser with custom additional features

10 lines (9 loc) 263 B
const Section = require('./Section'); class Rule extends Section { constructor(statement, description, lineNumber){ super("Rule",statement, lineNumber); this.description=description; this.scenarios = []; } } module.exports = Rule;