| 173 | } |
| 174 | |
| 175 | virtual void collect_leaves(std::vector<LeafPattern*>& lst) override final { |
| 176 | for(auto& child : fChildren) { |
| 177 | child->collect_leaves(lst); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | void setChildren(PatternList children) { |
| 182 | fChildren = std::move(children); |
nothing calls this directly
no test coverage detected