class RLTK::Parser::ParseStack::Shift

The Shift class indicates to the parser that it should shift the current input token.

Public Instance Methods

to_s() click to toggle source

@return [String] String representation of this action.

# File lib/rltk/parser.rb, line 1677
def to_s
        "Shift to State #{self.id}"
end