MCPcopy Create free account
hub / github.com/alibaba/euler / FindLeft

Method FindLeft

euler/parser/tree.h:167–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

165 }
166
167 TreeNode* FindLeft() {
168 TreeNode* left = this;
169 while (!left->children_.empty()) {
170 left = left->children_.back();
171 }
172 return left;
173 }
174
175 virtual ~TreeNode() {
176 for (TreeNode* node : children_) {

Callers

nothing calls this directly

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected