# File lib/cucumber/rb_support/rb_world.rb, line 47 def table(text_or_table, file=nil, line_offset=0) if Array === text_or_table Ast::Table.new(text_or_table) else @table_parser ||= Parser::TableParser.new @table_parser.parse_or_fail(text_or_table.strip, file, line_offset) end end