| 223 | |
| 224 | |
| 225 | void ArgConverter::onDisposeIsolate(Isolate* isolate) { |
| 226 | auto itFound = s_type_long_operations_cache.find(isolate); |
| 227 | if (itFound != s_type_long_operations_cache.end()) { |
| 228 | delete itFound->second; |
| 229 | s_type_long_operations_cache.erase(itFound); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | robin_hood::unordered_map<Isolate*, ArgConverter::TypeLongOperationsCache*> ArgConverter::s_type_long_operations_cache; |