We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b55bf2 commit 5190e5cCopy full SHA for 5190e5c
Zend/zend_ast.c
@@ -18,13 +18,13 @@
18
*/
19
20
#include "zend_ast.h"
21
-#include "zend_API.h"
22
-#include "zend_operators.h"
23
-#include "zend_language_parser.h"
24
-#include "zend_smart_str.h"
25
-#include "zend_exceptions.h"
+#include "zend_API.h" // for array_set_zval_key
+#include "zend_arena.h"
26
#include "zend_constants.h"
27
#include "zend_enum.h"
+#include "zend_language_parser.h" // for T_*
+#include "zend_smart_str.h"
+#include "zend_exceptions.h" // for zend_throw_error
28
29
ZEND_API zend_ast_process_t zend_ast_process = NULL;
30
Zend/zend_ast.h
@@ -21,7 +21,9 @@
#ifndef ZEND_AST_H
#define ZEND_AST_H
-#include "zend.h"
+#include "zend_types.h" // for zval
+
+#include <stdint.h>
#ifndef ZEND_AST_SPEC
# define ZEND_AST_SPEC 1
0 commit comments