| 607 | private: |
| 608 | |
| 609 | void error(char const* msg) { |
| 610 | std::ostringstream ous; |
| 611 | ous << tok.line() << ": " << msg << " got: " << peek(0) << "\n"; |
| 612 | throw default_exception(ous.str()); |
| 613 | } |
| 614 | |
| 615 | symbol const& peek(unsigned i) { return tok.peek(i); } |
| 616 |
no test coverage detected