Class: Gherkin::Parser::Parser::Machine

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

Defined Under Namespace

Classes: StateMachineReader

Instance Method Summary collapse

Constructor Details

#initialize(parser, name) ⇒ Machine

Returns a new instance of Machine.



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

def initialize(parser, name)
  @parser = parser
  @name = name
  @transition_map = transition_map(name)
  @state = name
end

Instance Method Details

#event(ev, line) ⇒ Object



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/gherkin/parser/parser.rb', line 79

def event(ev, line)
  states = @transition_map[@state]
  raise "Unknown state: #{@state.inspect} for machine #{@name}" if states.nil?
  new_state = states[ev]
  case new_state
  when "E"
    yield @state, expected
  when /push\((.+)\)/
    @parser.push_machine($1)
    @parser.event(ev, line)
  when "pop()"
    @parser.pop_machine()
    @parser.event(ev, line)
  else
    raise "Unknown transition: #{ev.inspect} among #{states.inspect} for machine #{@name}" if new_state.nil?
    @state = new_state
  end
end

#expectedObject



98
99
100
101
# File 'lib/gherkin/parser/parser.rb', line 98

def expected
  allowed = @transition_map[@state].find_all { |_, action| action != "E" }
  allowed.collect { |state| state[0] }.sort - ['eof']
end