class Racc::Shift

Attributes

Public Class Methods

# File lib/racc/state.rb, line 881
def initialize(goto)
  @goto_state = goto
end

Public Instance Methods

# File lib/racc/state.rb, line 887
def goto_id
  @goto_state.ident
end
# File lib/racc/state.rb, line 891
def inspect
  "<shift #{@goto_state.ident}>"
end