Lines Matching defs:expr
89 %type <exVal> expr
112 root : T_EXPR_BOOL expr { ctx->expr = $2; }
113 | T_EXPR_STRING string { ctx->expr = $2; }
117 expr : T_TRUE { $$ = ap_expr_make(op_True, NULL, NULL, ctx); }
119 | T_OP_NOT expr { $$ = ap_expr_make(op_Not, $2, NULL, ctx); }
120 | expr T_OP_OR expr { $$ = ap_expr_make(op_Or, $1, $3, ctx); }
121 | expr T_OP_AND expr { $$ = ap_expr_make(op_And, $1, $3, ctx); }
125 | '(' expr ')' { $$ = $2; }