# File lib/racc/state.rb, line 946 def to_s sprintf('state %d: S/R conflict rule %d reduce and shift %s', @stateid, @reduce.ruleid, @shift.to_s) end
# File lib/racc/state.rb, line 936 def initialize(sid, shift, reduce) @stateid = sid @shift = shift @reduce = reduce end