Struct.new(:line, :location)
# File lib/gherkin/token.rb, line 10 def detach # TODO: detach line - is this needed? end
# File lib/gherkin/token.rb, line 6 def eof? line.nil? end
# File lib/gherkin/token.rb, line 14 def token_value eof? ? "EOF" : line.get_line_text(-1) end