| 445 | } |
| 446 | } |
| 447 | bool expect(const int expected) |
| 448 | { |
| 449 | skip_ws(); |
| 450 | if (getc() != expected) { |
| 451 | ungetc(); |
| 452 | return false; |
| 453 | } |
| 454 | return true; |
| 455 | } |
| 456 | bool match(const std::string &pattern) |
| 457 | { |
| 458 | for (std::string::const_iterator pi(pattern.begin()); pi != pattern.end(); ++pi) { |
no outgoing calls
no test coverage detected