MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / addTo

Method addTo

Source/Node/Node.cpp:526–531  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524}
525
526Node* Node::addTo(Node* parent, int order, String tag) {
527 AssertIf(parent == this, "can not add node to itself.");
528 AssertIf(parent == nullptr, "add node to invalid parent.");
529 parent->addChild(this, order, tag);
530 return this;
531}
532
533Node* Node::addTo(Node* parent, int zOrder) {
534 return addTo(parent, zOrder, getTag());

Callers 11

YarnTester.tsFile · 0.80
setButtonsFunction · 0.80
displayClipsFunction · 0.80
initMethod · 0.80
destroyMethod · 0.80
updateMethod · 0.80
HitMethod · 0.80
runMethod · 0.80
node_add_to_with_orderFunction · 0.80
node_add_toFunction · 0.80

Calls 2

getOrderFunction · 0.85
addChildMethod · 0.45

Tested by

no test coverage detected