| 1279 | } |
| 1280 | |
| 1281 | void fxPrivateMemberNodeBind(void* it, void* param) |
| 1282 | { |
| 1283 | txBinder* binder = param; |
| 1284 | txPrivateMemberNode* self = it; |
| 1285 | fxScopeLookup(binder->scope, (txAccessNode*)self, 0); |
| 1286 | if (!self->declaration) |
| 1287 | fxReportParserError(binder->parser, self->line, "invalid private identifier"); |
| 1288 | fxNodeDispatchBind(self->reference, param); |
| 1289 | } |
| 1290 | |
| 1291 | void fxProgramNodeBind(void* it, void* param) |
| 1292 | { |
nothing calls this directly
no test coverage detected