| 910 | public: |
| 911 | TextNode(const Location & loc, const std::string& t) : TemplateNode(loc), text(t) {} |
| 912 | void do_render(std::ostringstream & out, const std::shared_ptr<Context> &) const override { |
| 913 | out << text; |
| 914 | } |
| 915 | }; |
| 916 | |
| 917 | class ExpressionNode : public TemplateNode { |
nothing calls this directly
no outgoing calls
no test coverage detected