Generate a fresh id in this mapping's domain.
| 124 | |
| 125 | // Generate a fresh id in this mapping's domain. |
| 126 | uint32_t MakeFreshId() { |
| 127 | id_map_.push_back(0); |
| 128 | return static_cast<uint32_t>(id_map_.size()) - 1; |
| 129 | } |
| 130 | |
| 131 | private: |
| 132 | // Given an id, returns the corresponding id in the other module, or 0 if not |
no test coverage detected