| 751 | struct TextTemplateToken : public TemplateToken { |
| 752 | std::string text; |
| 753 | TextTemplateToken(const Location & loc, SpaceHandling pre, SpaceHandling post, const std::string& t) : TemplateToken(Type::Text, loc, pre, post), text(t) {} |
| 754 | }; |
| 755 | |
| 756 | struct ExpressionTemplateToken : public TemplateToken { |
nothing calls this directly
no outgoing calls
no test coverage detected