| 13330 | } |
| 13331 | |
| 13332 | bool match( std::string const & token ) |
| 13333 | { |
| 13334 | skip_whitespace(); |
| 13335 | if ( expr.substr( pos, token.length() ) == token ) |
| 13336 | { |
| 13337 | pos += token.length(); |
| 13338 | skip_whitespace(); |
| 13339 | return true; |
| 13340 | } |
| 13341 | return false; |
| 13342 | } |
| 13343 | |
| 13344 | void skip_whitespace() |
| 13345 | { |
nothing calls this directly
no outgoing calls
no test coverage detected