2 /* Parse tree node interface */
10 typedef struct _node
{
15 struct _node
*n_child
;
18 PyAPI_FUNC(node
*) PyNode_New(int type
);
19 PyAPI_FUNC(int) PyNode_AddChild(node
*n
, int type
,
20 char *str
, int lineno
);
21 PyAPI_FUNC(void) PyNode_Free(node
*n
);
23 /* Node access functions */
24 #define NCH(n) ((n)->n_nchildren)
26 #define CHILD(n, i) (&(n)->n_child[i])
27 #define RCHILD(n, i) (CHILD(n, NCH(n) + i))
28 #define TYPE(n) ((n)->n_type)
29 #define STR(n) ((n)->n_str)
31 /* Assert that the type of a node is what we expect */
32 #define REQ(n, type) assert(TYPE(n) == (type))
34 PyAPI_FUNC(void) PyNode_ListTree(node
*);
39 #endif /* !Py_NODE_H */