nitc :: ReduceAction14 :: defaultinit
nitc $ ReduceAction14 :: SELF
Type of this instance, automatically specialized in every classnitc $ ReduceAction14 :: action
nitc :: ReduceAction :: _goto
nitc :: ReduceAction :: action
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: ReduceAction :: defaultinit
nitc :: ReduceAction14 :: 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).nitc :: ReduceAction
Each reduce action has its own class, this one is the root of the hierarchy.
private class ReduceAction14
super ReduceAction
redef fun action(p: Parser)
do
var node_list: nullable Object = null
var nodearraylist4 = p.pop
var nodearraylist3 = p.pop
var nodearraylist2 = p.pop
var nodearraylist1 = p.pop
var listnode4 = new Array[Object]
var listnode6 = new Array[Object]
var listnode9 = new Array[Object]
var listnode3 = nodearraylist1
assert listnode3 isa Array[Object]
listnode4 = concat(listnode4, listnode3)
var listnode5 = nodearraylist2
assert listnode5 isa Array[Object]
listnode6 = concat(listnode6, listnode5)
var listnode7 = nodearraylist3
assert listnode7 isa Array[Object]
var pclassdefnode8 = nodearraylist4
assert pclassdefnode8 isa nullable AClassdef
listnode9 = concat(listnode9, listnode7)
if pclassdefnode8 != null then
listnode9.add(pclassdefnode8)
end
var pmodulenode1: nullable AModule = new AModule.init_amodule(
null,
listnode4,
listnode6,
listnode9
)
node_list = pmodulenode1
p.push(p.go_to(_goto), node_list)
end
end
src/parser/parser.nit:2234,1--2269,3