| 24 | } |
| 25 | |
| 26 | inline parser::DefBlockSyntaxParser<const std::string>::Tokeniser createTokeniser(const std::string& source) |
| 27 | { |
| 28 | return parser::DefBlockSyntaxParser<const std::string>::Tokeniser( |
| 29 | parser::detail::SyntaxParserTraits<const std::string>::GetStartIterator(source), |
| 30 | parser::detail::SyntaxParserTraits<const std::string>::GetEndIterator(source), |
| 31 | parser::DefBlockSyntaxTokeniserFunc() |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | inline void expectSingleToken(const std::string& source, parser::DefSyntaxToken::Type type, const std::string& value) |
| 36 | { |
no test coverage detected