| 154 | inline CheckedError NoError() { return CheckedError(false); } |
| 155 | |
| 156 | CheckedError Parser::RecurseError() { |
| 157 | return Error("maximum parsing depth " + NumToString(parse_depth_counter_) + |
| 158 | " reached"); |
| 159 | } |
| 160 | |
| 161 | class Parser::ParseDepthGuard { |
| 162 | public: |
no test coverage detected