nitc :: ReduceAction648 :: defaultinit
private class ReduceAction648
super ReduceAction
redef fun action(p: Parser)
do
var node_list: nullable Object = null
var nodearraylist3 = p.pop
var nodearraylist2 = p.pop
var nodearraylist1 = p.pop
var tkwnotnode2 = nodearraylist1
assert tkwnotnode2 isa nullable TKwnot
var pexprnode3 = nodearraylist3
assert pexprnode3 isa nullable AExpr
var pexprnode1: nullable ANotExpr = new ANotExpr.init_anotexpr(
tkwnotnode2,
pexprnode3
)
node_list = pexprnode1
p.push(p.go_to(_goto), node_list)
end
end
src/parser/parser.nit:27097,1--27116,3