MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxClassNodeDistribute

Function fxClassNodeDistribute

xs/sources/xsTree.c:372–383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370}
371
372void 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
385void fxCatchNodeDistribute(void* it, txNodeCall call, void* param)
386{

Callers

nothing calls this directly

Calls 1

fxNodeListDistributeFunction · 0.85

Tested by

no test coverage detected