File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -649,6 +649,10 @@ struct _zend_ast_ref {
649
649
#define _IS_BOOL 18
650
650
#define _IS_NUMBER 19
651
651
652
+ /* used for place holders */
653
+ #define _IS_PLACEHOLDER_ARG 20
654
+ #define _IS_PLACEHOLDER_VARIADIC 21
655
+
652
656
/* guard flags */
653
657
#define ZEND_GUARD_PROPERTY_GET (1<<0)
654
658
#define ZEND_GUARD_PROPERTY_SET (1<<1)
@@ -666,10 +670,6 @@ struct _zend_ast_ref {
666
670
#define ZEND_GUARD_PROTECT_RECURSION (pg , t ) *pg |= ZEND_GUARD_RECURSION_TYPE(t)
667
671
#define ZEND_GUARD_UNPROTECT_RECURSION (pg , t ) *pg &= ~ZEND_GUARD_RECURSION_TYPE(t)
668
672
669
- /* used for place holders */
670
- #define _IS_PLACEHOLDER_ARG 20
671
- #define _IS_PLACEHOLDER_VARIADIC 21
672
-
673
673
static zend_always_inline uint8_t zval_get_type (const zval * pz ) {
674
674
return pz -> u1 .v .type ;
675
675
}
You can’t perform that action at this time.
0 commit comments