class RLTK::Parser::ParseStack::Action
The Action
class is used to indicate what action the parser should take given a current state and input token.
Attributes
id[R]
@return [Integer] ID of this action.
Public Class Methods
new(id = nil)
click to toggle source
@param [Integer] id ID of this action.
# File lib/rltk/parser.rb, line 1633 def initialize(id = nil) @id = id end