xref: /php-ast/ast_str_defs.h (revision 85b6bf88)
1 #ifndef AST_STR_DEFS_H
2 #define AST_STR_DEFS_H
3 
4 #define AST_STR_DEFS \
5 	X(kind) \
6 	X(flags) \
7 	X(lineno) \
8 	X(children) \
9 	X(name) \
10 	X(docComment) \
11 	X(endLineno) \
12 	X(__declId) \
13 	X(flagsCombinable) \
14 	X(type) \
15 	X(params) \
16 	X(uses) \
17 	X(stmts) \
18 	X(returnType) \
19 	X(attributes) \
20 	X(extends) \
21 	X(implements) \
22 	X(expr) \
23 	X(var) \
24 	X(offset) \
25 	X(label) \
26 	X(depth) \
27 	X(class) \
28 	X(const) \
29 	X(dim) \
30 	X(prop) \
31 	X(args) \
32 	X(left) \
33 	X(right) \
34 	X(value) \
35 	X(key) \
36 	X(default) \
37 	X(cond) \
38 	X(declares) \
39 	X(props) \
40 	X(traits) \
41 	X(adaptations) \
42 	X(method) \
43 	X(insteadof) \
44 	X(alias) \
45 	X(prefix) \
46 	X(true) \
47 	X(false) \
48 	X(try) \
49 	X(catches) \
50 	X(finally) \
51 	X(init) \
52 	X(loop) \
53 
54 #endif
55