| 96 | } |
| 97 | |
| 98 | void ReplaceNullWithOtherType(std::vector<TypeHolder>* types) { |
| 99 | ReplaceNullWithOtherType(types->data(), types->size()); |
| 100 | } |
| 101 | |
| 102 | void ReplaceNullWithOtherType(TypeHolder* first, size_t count) { |
| 103 | DCHECK_EQ(count, 2); |
no test coverage detected