| 370 | } |
| 371 | |
| 372 | void fxClassNodeDistribute(void* it, txNodeCall call, void* param) |
| 373 | { |
| 374 | txClassNode* self = it; |
| 375 | if (self->heritage) |
| 376 | (*call)(self->heritage, param); |
| 377 | (*call)(self->constructor, param); |
| 378 | fxNodeListDistribute(self->items, call, param); |
| 379 | if (self->constructorInit) |
| 380 | (*call)(self->constructorInit, param); |
| 381 | if (self->instanceInit) |
| 382 | (*call)(self->instanceInit, param); |
| 383 | } |
| 384 | |
| 385 | void fxCatchNodeDistribute(void* it, txNodeCall call, void* param) |
| 386 | { |
nothing calls this directly
no test coverage detected