| 397 | } |
| 398 | |
| 399 | CheckedError Parser::RecurseError() { |
| 400 | return Error("maximum parsing depth " + NumToString(parse_depth_counter_) + |
| 401 | " reached"); |
| 402 | } |
| 403 | |
| 404 | const std::string &Parser::GetPooledString(const std::string &s) const { |
| 405 | return *(string_cache_.insert(s).first); |
no test coverage detected