4 typedef PyObject
* identifier
;
5 typedef PyObject
* string
;
6 typedef PyObject
* object
;
9 typedef enum {false, true} bool;
12 /* It would be nice if the code generated by asdl_c.py was completely
13 independent of Python, but it is a goal the requires too much work
14 at this stage. So, for example, I'll represent identifiers as
15 interned Python strings.
18 /* XXX A sequence should be typed so that its use can be typechecked. */
30 asdl_seq
*asdl_seq_new(int size
, PyArena
*arena
);
31 asdl_int_seq
*asdl_int_seq_new(int size
, PyArena
*arena
);
33 #define asdl_seq_GET(S, I) (S)->elements[(I)]
34 #define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
36 #define asdl_seq_SET(S, I, V) { \
38 assert((S) && _asdl_i < (S)->size); \
39 (S)->elements[_asdl_i] = (V); \
42 #define asdl_seq_SET(S, I, V) (S)->elements[I] = (V)
45 #endif /* !Py_ASDL_H */