| 909 | std::string text; |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected