|
#define | PN_TOK_MISSING 0x10000 |
|
#define | PN_AST(T, A, N, L) potion_source(P, AST_##T, A, PN_NIL, PN_NIL, N, L) |
|
#define | PN_AST2(T, A, B, N, L) potion_source(P, AST_##T, A, B, PN_NIL, N, L) |
|
#define | PN_AST3(T, A, B, C, N, L) potion_source(P, AST_##T, A, B, C, N, L) |
|
#define | PN_AST_(T, A) potion_source(P, AST_##T, A, PN_NIL, PN_NIL, -1, PN_NIL) |
|
#define | PN_AST2_(T, A, B) potion_source(P, AST_##T, A, B, PN_NIL, -1, PN_NIL) |
|
#define | PN_AST3_(T, A, B, C) potion_source(P, AST_##T, A, B, C, -1, PN_NIL) |
|
#define | PN_OP(T, A, B) potion_source(P, T, A, B, PN_NIL, 0, PN_NIL) |
| Warning: This might conflict with the typedef struct PN_OP. More...
|
|
#define | PN_TUPIF(T) PN_IS_TUPLE(T) ? T : PN_TUP(T) |
|
#define | PN_SRC(S) ((struct PNSource *)S) |
|
#define | PN_PART(S) ((struct PNSource *)S)->part |
|
#define | PN_S_(S, N) ((struct PNSource *)S)->a[N] |
|
#define | PN_S(S, N) (PN)(((struct PNSource *)S)->a[N]) |
|
#define | PN_CLOSE(B) |
|
the ast for Potion code in-memory
(c) 2008 why the lucky stiff, the freelance professor
Definition in file ast.h.