| 2347 | return result; |
| 2348 | } |
| 2349 | void CreateOptionalArray(const string& name) { |
| 2350 | DCHECK(!arrays.count(name) && !optional_arrays.count(name)); |
| 2351 | optional_arrays.insert(name); |
| 2352 | } |
| 2353 | bool IsOptionalArray(const string& name) const { |
| 2354 | return optional_arrays.count(name); |
| 2355 | } |
no test coverage detected