MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / FindLogicExpTreeRoot

Function FindLogicExpTreeRoot

src/Chain/libraries/glua/glua_decompile.cpp:436–442  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

434}
435
436LogicExp* FindLogicExpTreeRoot(LogicExp* exp) {
437 LogicExp* curr = exp;
438 while (curr->parent) {
439 curr = curr->parent;
440 }
441 return curr;
442}
443
444void DeleteLogicExpSubTree(LogicExp* exp) {
445 if (exp) {

Callers 1

DeleteLogicExpTreeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected