| 232 | } |
| 233 | |
| 234 | static Ptr Create(const std::string& name) |
| 235 | { |
| 236 | return std::make_shared<DefNameSyntax>( |
| 237 | DefSyntaxToken(DefSyntaxToken::Type::Token, name) |
| 238 | ); |
| 239 | } |
| 240 | }; |
| 241 | |
| 242 | class DefBlockSyntax : |
nothing calls this directly
no test coverage detected