| 194 | } |
| 195 | |
| 196 | static Ptr Create(const std::string& typeName) |
| 197 | { |
| 198 | return std::make_shared<DefTypeSyntax>( |
| 199 | DefSyntaxToken(DefSyntaxToken::Type::Token, typeName) |
| 200 | ); |
| 201 | } |
| 202 | }; |
| 203 | |
| 204 | class DefNameSyntax : |
nothing calls this directly
no test coverage detected