| 213 | } |
| 214 | |
| 215 | bool E(TreeNode* t) { |
| 216 | std::vector<TreeNode*> children = t->GetChildren(); |
| 217 | if (children.size() == 2) { |
| 218 | t->GetProp()->AddValue(children[1]->GetValue()); |
| 219 | } |
| 220 | return true; |
| 221 | } |
| 222 | |
| 223 | bool V(TreeNode* t) { |
| 224 | std::vector<TreeNode*> children = t->GetChildren(); |
nothing calls this directly
no test coverage detected