Method: Racc::Goto#initialize

Defined in:
lib/racc/state.rb

#initialize(ident, sym, from, to) ⇒ Goto

Returns a new instance of Goto.



772
773
774
775
776
777
# File 'lib/racc/state.rb', line 772

def initialize(ident, sym, from, to)
  @ident      = ident
  @symbol     = sym
  @from_state = from
  @to_state   = to
end