Class: Cucumber::Core::Gherkin::AstBuilder::OutlineStepBuilder

Inherits:
StepBuilder show all
Defined in:
lib/cucumber/core/gherkin/ast_builder.rb

Instance Attribute Summary

Attributes inherited from StepBuilder

#multiline_argument_builder

Instance Method Summary collapse

Methods inherited from StepBuilder

#children, #initialize, #multiline_argument

Methods inherited from Builder

#handle_comments, #initialize

Constructor Details

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

Instance Method Details

#result(language) ⇒ Object



257
258
259
260
261
262
263
264
265
266
# File 'lib/cucumber/core/gherkin/ast_builder.rb', line 257

def result(language)
  Ast::OutlineStep.new(
    language,
    location,
    comments,
    keyword,
    attributes[:text],
    multiline_argument
  )
end