| 21 | |
| 22 | |
| 23 | struct ParseException { |
| 24 | std::string str; |
| 25 | unsigned lineno; |
| 26 | |
| 27 | ParseException(std::string &&str, unsigned lineno) |
| 28 | : str(std::move(str)), lineno(lineno) {} |
| 29 | }; |
| 30 | |
| 31 | constexpr unsigned PARSER_READ_AHEAD = 20; |
| 32 |
no outgoing calls
no test coverage detected