| 62 | } |
| 63 | |
| 64 | void popident(ident &id) |
| 65 | { |
| 66 | if(id.type != ID_ALIAS || !id.stack) return; |
| 67 | if(id.action != id.executing) delete[] id.action; |
| 68 | identstack *stack = id.stack; |
| 69 | id.action = stack->action; |
| 70 | id.stack = stack->next; |
| 71 | id.context = stack->context; |
| 72 | delete stack; |
| 73 | } |
| 74 | |
| 75 | ident *newident(const char *name, int context = execcontext) |
| 76 | { |
no outgoing calls
no test coverage detected