| 955 | LoopControlType control_type_; |
| 956 | public: |
| 957 | LoopControlNode(const Location & loc, LoopControlType control_type) : TemplateNode(loc), control_type_(control_type) {} |
| 958 | void do_render(std::ostringstream &, const std::shared_ptr<Context> &) const override { |
| 959 | throw LoopControlException(control_type_); |
| 960 | } |
nothing calls this directly
no outgoing calls
no test coverage detected