| 142 | } |
| 143 | |
| 144 | static Ptr Create(const std::string& whitespace) |
| 145 | { |
| 146 | return std::make_shared<DefWhitespaceSyntax>( |
| 147 | DefSyntaxToken(DefSyntaxToken::Type::Whitespace, whitespace) |
| 148 | ); |
| 149 | } |
| 150 | }; |
| 151 | |
| 152 | class DefCommentSyntax : |
nothing calls this directly
no test coverage detected