| 345 | } |
| 346 | |
| 347 | void EditorDebuggerInspector::clear_cache() { |
| 348 | clear_remote_inspector(); |
| 349 | |
| 350 | for (EditorDebuggerRemoteObjects *robjs : remote_objects_list) { |
| 351 | memdelete(robjs); |
| 352 | } |
| 353 | remote_objects_list.clear(); |
| 354 | |
| 355 | remote_dependencies.clear(); |
| 356 | } |
| 357 | |
| 358 | void EditorDebuggerInspector::invalidate_selection_from_cache(const TypedArray<uint64_t> &p_ids) { |
| 359 | for (EditorDebuggerRemoteObjects *robjs : remote_objects_list) { |
no test coverage detected