Lines Matching refs:zend_ast_create_binary_op

1127 			{ $$ = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1, $3); }
1128 | expr '|' expr { $$ = zend_ast_create_binary_op(ZEND_BW_OR, $1, $3); }
1129 …| expr T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG expr { $$ = zend_ast_create_binary_op(ZEND_BW_AND…
1130 …| expr T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG expr { $$ = zend_ast_create_binary_op(ZEND_BW_AND, $1…
1131 | expr '^' expr { $$ = zend_ast_create_binary_op(ZEND_BW_XOR, $1, $3); }
1132 | expr '.' expr { $$ = zend_ast_create_binary_op(ZEND_CONCAT, $1, $3); }
1133 | expr '+' expr { $$ = zend_ast_create_binary_op(ZEND_ADD, $1, $3); }
1134 | expr '-' expr { $$ = zend_ast_create_binary_op(ZEND_SUB, $1, $3); }
1135 | expr '*' expr { $$ = zend_ast_create_binary_op(ZEND_MUL, $1, $3); }
1136 | expr T_POW expr { $$ = zend_ast_create_binary_op(ZEND_POW, $1, $3); }
1137 | expr '/' expr { $$ = zend_ast_create_binary_op(ZEND_DIV, $1, $3); }
1138 | expr '%' expr { $$ = zend_ast_create_binary_op(ZEND_MOD, $1, $3); }
1139 | expr T_SL expr { $$ = zend_ast_create_binary_op(ZEND_SL, $1, $3); }
1140 | expr T_SR expr { $$ = zend_ast_create_binary_op(ZEND_SR, $1, $3); }
1146 { $$ = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1, $3); }
1148 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1, $3); }
1150 { $$ = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1, $3); }
1152 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1, $3); }
1154 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1, $3); }
1156 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER_OR_EQUAL, $1, $3); }
1162 { $$ = zend_ast_create_binary_op(ZEND_SPACESHIP, $1, $3); }