Exception: Cucumber::Parser::SyntaxError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cucumber/parser/treetop_ext.rb

Overview

Raised if Cucumber fails to parse a feature file

Instance Method Summary collapse

Constructor Details

#initialize(parser, file, line_offset) ⇒ SyntaxError

Returns a new instance of SyntaxError.



17
18
19
20
21
22
23
# File 'lib/cucumber/parser/treetop_ext.rb', line 17

def initialize(parser, file, line_offset)
  tf = parser.terminal_failures
  expected = tf.size == 1 ? tf[0].expected_string.inspect : "one of #{tf.map{|f| f.expected_string.inspect}.uniq*', '}"
  line = parser.failure_line + line_offset
  message = "#{file}:#{line}:#{parser.failure_column}: Parse error, expected #{expected}."
  super(message)
end