class Cucumber::Core::Gherkin::AstBuilder::ExamplesTableBuilder::HeaderBuilder

Public Instance Methods

result() click to toggle source
# File lib/cucumber/core/gherkin/ast_builder.rb, line 325
def result
  cells = attributes[:cells].map { |c| c[:value] }
  Ast::ExamplesTable::Header.new(cells, location, comments)
end