| 12 | { |
| 13 | |
| 14 | inline parser::DefSyntaxTree::Ptr parseText(const std::string& text) |
| 15 | { |
| 16 | parser::DefBlockSyntaxParser<const std::string> parser(text); |
| 17 | return parser.parse(); |
| 18 | } |
| 19 | |
| 20 | inline void expectToken(const parser::DefSyntaxToken& token, parser::DefSyntaxToken::Type type, const std::string& value) |
| 21 | { |
no test coverage detected