Class: Cucumber::Core::Gherkin::AstBuilder::ScenarioOutlineBuilder::ExamplesTableBuilder

Inherits:
Builder
  • Object
show all
Defined in:
lib/cucumber/core/gherkin/ast_builder.rb

Instance Method Summary collapse

Methods inherited from Builder

#initialize

Constructor Details

This class inherits a constructor from Cucumber::Core::Gherkin::AstBuilder::Builder

Instance Method Details

#result(language) ⇒ Object



274
275
276
277
278
279
280
281
282
283
284
285
286
# File 'lib/cucumber/core/gherkin/ast_builder.rb', line 274

def result(language)
  Ast::ExamplesTable.new(
    node,
    location,
    comments,
    tags,
    node.keyword,
    node.name,
    node.description,
    header,
    example_rows(language)
  )
end