| 37 | }); |
| 38 | |
| 39 | void clearstack(identstack *&stack) |
| 40 | { |
| 41 | while(stack) |
| 42 | { |
| 43 | delete[] stack->action; |
| 44 | identstack *tmp = stack; |
| 45 | stack = stack->next; |
| 46 | delete tmp; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | void pushident(ident &id, char *val, int context = execcontext) |
| 51 | { |