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