nitc :: ReduceAction
nitc :: ReduceAction :: _goto
nitc :: ReduceAction :: action
nitc :: ReduceAction :: defaultinit
nitc :: ReduceAction :: goto
nitc :: ReduceAction :: goto=
nitc $ ReduceAction :: SELF
Type of this instance, automatically specialized in every classnitc :: ReduceAction :: _goto
nitc :: ReduceAction :: action
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: ReduceAction :: defaultinit
core :: Object :: defaultinit
nitc :: ReduceAction :: goto
nitc :: ReduceAction :: goto=
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).
# Each reduce action has its own class, this one is the root of the hierarchy.
private abstract class ReduceAction
fun action(p: Parser) is abstract
fun concat(l1, l2 : Array[Object]): Array[Object]
do
if l1.is_empty then return l2
l1.append(l2)
return l1
end
var goto: Int
end
src/parser/parser_work.nit:290,1--300,3