@@ -2296,6 +2296,7 @@ static ZEND_COLD void zend_ast_export_ex(smart_str *str, zend_ast *ast, int prio
22962296 case ZEND_AST_GREATER_EQUAL : BINARY_OP (" >= " , 180 , 181 , 181 );
22972297 case ZEND_AST_AND : BINARY_OP (" && " , 130 , 130 , 131 );
22982298 case ZEND_AST_OR : BINARY_OP (" || " , 120 , 120 , 121 );
2299+ case ZEND_AST_PIPE : BINARY_OP (" |> " , 130 , 130 , 131 );
22992300 case ZEND_AST_ARRAY_ELEM :
23002301 if (ast -> child [1 ]) {
23012302 zend_ast_export_ex (str , ast -> child [1 ], 80 , indent );
@@ -2506,11 +2507,6 @@ static ZEND_COLD void zend_ast_export_ex(smart_str *str, zend_ast *ast, int prio
25062507 zend_ast_export_name (str , ast -> child [1 ], 0 , indent );
25072508 }
25082509 break ;
2509- case ZEND_AST_PIPE :
2510- zend_ast_export_ex (str , ast -> child [0 ], 0 , indent );
2511- smart_str_appends (str , " |> " );
2512- zend_ast_export_ex (str , ast -> child [1 ], 0 , indent );
2513- break ;
25142510 case ZEND_AST_NAMED_ARG :
25152511 smart_str_append (str , zend_ast_get_str (ast -> child [0 ]));
25162512 smart_str_appends (str , ": " );
0 commit comments