AST_PLUS          521 core/compile.c     case AST_PLUS: case AST_MINUS: case AST_TIMES: case AST_DIV:
AST_PLUS          533 core/compile.c         case AST_PLUS:  PN_ASM2(OP_ADD, reg, reg + 1);  break;
AST_PLUS          192 syn/syntax-p5.y        | plus assign s:sets  { e = PN_AST2(ASSIGN, e, PN_OP(AST_PLUS, e, s)) }
AST_PLUS          228 syn/syntax-p5.y       ( plus x:product      { p = PN_OP(AST_PLUS, p, x) }
AST_PLUS          265 syn/syntax-p5.y     | l:eatom plus !plus r:eatom   { $$ = PN_OP(AST_PLUS,  l, r) }
AST_PLUS           83 syn/syntax.y          | plus assign s:sets  { e = PN_AST2(ASSIGN, e, PN_OP(AST_PLUS, e, s)) }
AST_PLUS          119 syn/syntax.y         ( plus x:product      { p = PN_OP(AST_PLUS, p, x) }
AST_PLUS          136 syn/syntax.y          | plus !plus a:atom    { a = PN_OP(AST_PLUS, PN_AST(VALUE, PN_ZERO), a) }