| 254 | } |
| 255 | |
| 256 | void fxScopeEval(txScope* self) |
| 257 | { |
| 258 | while (self) { |
| 259 | self->flags |= mxEvalFlag; |
| 260 | self = self->scope; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | txDeclareNode* fxScopeGetDeclareNode(txScope* self, txSymbol* symbol) |
| 265 | { |
no outgoing calls
no test coverage detected