| 228 | //----------------------------------------------------------------------------- |
| 229 | |
| 230 | static void SetIdToObjectMapValue(std::vector<Object*>& object_from_id_map_, int id, Object* value) { |
| 231 | if (object_from_id_map_.size() <= id) { |
| 232 | object_from_id_map_.resize((id + 1) * 2); |
| 233 | } |
| 234 | object_from_id_map_[id] = value; |
| 235 | } |
| 236 | |
| 237 | static Object* GetIdToObjectMapValue(std::vector<Object*>& object_from_id_map_, int id) { |
| 238 | Object* result = NULL; |
no test coverage detected