Class: Gherkin::Parser::Parser

Inherits:
Object
  • Object
show all
Defined in:
lib/gherkin/parser/parser.rb

Defined Under Namespace

Classes: Machine

Instance Method Summary collapse

Constructor Details

#initialize(formatter, raise_on_error = true, machine_name = 'root', force_ruby = false) ⇒ Parser

Initialize the parser. machine_name refers to a state machine table.



18
19
20
21
22
23
24
25
26
# File 'lib/gherkin/parser/parser.rb', line 18

def initialize(formatter, raise_on_error=true, machine_name='root', force_ruby=false)
  @formatter = formatter
  @listener = Listener::FormatterListener.new(@formatter)
  @raise_on_error = raise_on_error
  @machine_name = machine_name
  @machines = []
  push_machine(@machine_name)
  @lexer = Gherkin::Lexer::I18nLexer.new(self, force_ruby)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args) ⇒ Object

Doesn’t yet fall back to super



43
44
45
46
47
48
49
50
51
# File 'lib/gherkin/parser/parser.rb', line 43

def method_missing(method, *args)
  # TODO: Catch exception and call super
  event(method.to_s, args[-1])
  @listener.__send__(method, *args)
  if method == :eof
    pop_machine
    push_machine(@machine_name)
  end
end

Instance Method Details

#errorsObject



38
39
40
# File 'lib/gherkin/parser/parser.rb', line 38

def errors
  @lexer.errors
end

#event(ev, line) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
# File 'lib/gherkin/parser/parser.rb', line 53

def event(ev, line)
  l = line ? @line_offset+line : nil
  machine.event(ev, l) do |state, legal_events|
    if @raise_on_error
      raise ParseError.new(state, ev, legal_events, @feature_uri, l)
    else
      # Only used for testing
      @listener.syntax_error(state, ev, legal_events, @feature_uri, l)
    end
  end
end

#expectedObject



77
78
79
# File 'lib/gherkin/parser/parser.rb', line 77

def expected
  machine.expected
end

#force_state(state) ⇒ Object



81
82
83
# File 'lib/gherkin/parser/parser.rb', line 81

def force_state(state)
  machine.instance_variable_set('@state', state)
end

#i18n_languageObject



34
35
36
# File 'lib/gherkin/parser/parser.rb', line 34

def i18n_language
  @lexer.i18n_language
end

#machineObject



73
74
75
# File 'lib/gherkin/parser/parser.rb', line 73

def machine
  @machines[-1]
end

#parse(gherkin, feature_uri, line_offset) ⇒ Object



28
29
30
31
32
# File 'lib/gherkin/parser/parser.rb', line 28

def parse(gherkin, feature_uri, line_offset)
  @formatter.uri(feature_uri)
  @line_offset = line_offset
  @lexer.scan(gherkin)
end

#pop_machineObject



69
70
71
# File 'lib/gherkin/parser/parser.rb', line 69

def pop_machine
  @machines.pop
end

#push_machine(name) ⇒ Object



65
66
67
# File 'lib/gherkin/parser/parser.rb', line 65

def push_machine(name)
  @machines.push(Machine.new(self, name))
end