ZEND_AST_UNARY_OP  247 Zend/zend_ast.c 		case ZEND_AST_UNARY_OP:
ZEND_AST_UNARY_OP 1215 Zend/zend_ast.c 		case ZEND_AST_UNARY_OP:
ZEND_AST_UNARY_OP 6369 Zend/zend_compile.c 			zend_ast *not_ast = zend_ast_create_ex(ZEND_AST_UNARY_OP, ZEND_BOOL_NOT, var_ast);
ZEND_AST_UNARY_OP 6817 Zend/zend_compile.c 		|| kind == ZEND_AST_UNARY_OP
ZEND_AST_UNARY_OP 7152 Zend/zend_compile.c 		case ZEND_AST_UNARY_OP:
ZEND_AST_UNARY_OP 7357 Zend/zend_compile.c 		case ZEND_AST_UNARY_OP:
ZEND_AST_UNARY_OP  915 Zend/zend_language_parser.y 	|	'!' expr { $$ = zend_ast_create_ex(ZEND_AST_UNARY_OP, ZEND_BOOL_NOT, $2); }
ZEND_AST_UNARY_OP  916 Zend/zend_language_parser.y 	|	'~' expr { $$ = zend_ast_create_ex(ZEND_AST_UNARY_OP, ZEND_BW_NOT, $2); }