| 262 | } |
| 263 | |
| 264 | txDeclareNode* fxScopeGetDeclareNode(txScope* self, txSymbol* symbol) |
| 265 | { |
| 266 | txDeclareNode* node = self->firstDeclareNode; |
| 267 | while (node) { |
| 268 | if (node->symbol == symbol) |
| 269 | return node; |
| 270 | node = node->nextDeclareNode; |
| 271 | } |
| 272 | return NULL; |
| 273 | } |
| 274 | |
| 275 | void fxScopeHoisted(txScope* self, txHoister* hoister) |
| 276 | { |
no outgoing calls
no test coverage detected