class Cucumber::Core::Gherkin::AstBuilder::OutlineStepBuilder

Public Instance Methods

result(language) click to toggle source
# File lib/cucumber/core/gherkin/ast_builder.rb, line 256
def result(language)
  Ast::OutlineStep.new(
    language,
    location,
    comments,
    keyword,
    attributes[:text],
    multiline_argument
  )
end