| 360 | } |
| 361 | |
| 362 | std::vector<uint32_t> RepeatedFieldToVector( |
| 363 | const google::protobuf::RepeatedField<uint32_t>& repeated_field) { |
| 364 | std::vector<uint32_t> result; |
| 365 | for (auto i : repeated_field) { |
| 366 | result.push_back(i); |
| 367 | } |
| 368 | return result; |
| 369 | } |
| 370 | |
| 371 | uint32_t WalkOneCompositeTypeIndex(opt::IRContext* context, |
| 372 | uint32_t base_object_type_id, |
no test coverage detected