In Files

  • ruby-3.1.2/lib/racc/state.rb

Parent

Files

Class/Module Index [+]

Quicksearch

Racc::Shift

Attributes

goto_state[R]

Public Class Methods

new(goto) click to toggle source
 
               # File ruby-3.1.2/lib/racc/state.rb, line 881
def initialize(goto)
  @goto_state = goto
end
            

Public Instance Methods

goto_id() click to toggle source
 
               # File ruby-3.1.2/lib/racc/state.rb, line 887
def goto_id
  @goto_state.ident
end
            
inspect() click to toggle source
 
               # File ruby-3.1.2/lib/racc/state.rb, line 891
def inspect
  "<shift #{@goto_state.ident}>"
end