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