class Cucumber::Core::Ast::ExamplesTable

Attributes

comments[R]
example_rows[R]
header[R]
keyword[R]
location[R]
tags[R]

Public Class Methods

new(location, comments, tags, keyword, name, description, header, example_rows) click to toggle source
# File lib/cucumber/core/ast/examples_table.rb, line 14
def initialize(location, comments, tags, keyword, name, description, header, example_rows)
  @location = location
  @comments = comments
  @tags = tags
  @keyword = keyword
  @name = name
  @description = description
  @header = header
  @example_rows = example_rows
end

Private Instance Methods

children() click to toggle source
# File lib/cucumber/core/ast/examples_table.rb, line 34
def children
  @example_rows
end
description_for_visitors() click to toggle source
# File lib/cucumber/core/ast/examples_table.rb, line 30
def description_for_visitors
  :examples_table
end