| 1308 | } |
| 1309 | |
| 1310 | void fxSuperNodeBind(void* it, void* param) |
| 1311 | { |
| 1312 | txSuperNode* self = it; |
| 1313 | txBinder* binder = param; |
| 1314 | fxScopeArrow(binder->scope); |
| 1315 | fxNodeDispatchBind(self->params, param); |
| 1316 | if (binder->classNode->instanceInitAccess) { |
| 1317 | self->instanceInitAccess = fxAccessNodeNew(binder->parser, XS_TOKEN_ACCESS, binder->classNode->instanceInitAccess->symbol); |
| 1318 | fxScopeLookup(binder->scope, self->instanceInitAccess, 0); |
| 1319 | } |
| 1320 | } |
| 1321 | |
| 1322 | void fxSwitchNodeBind(void* it, void* param) |
| 1323 | { |
nothing calls this directly
no test coverage detected