class Racc::Goto

Represents a transition on the grammar. “Real goto” means a transition by nonterminal, but this class treats also terminal’s. If one is a terminal transition, .ident returns nil.

Attributes

Public Class Methods

# File lib/racc/state.rb, line 768
def initialize(ident, sym, from, to)
  @ident      = ident
  @symbol     = sym
  @from_state = from
  @to_state   = to
end

Public Instance Methods

# File lib/racc/state.rb, line 780
def inspect
  "(#{@from_state.ident}-#{@symbol}->#{@to_state.ident})"
end