| 814 | } |
| 815 | |
| 816 | Object* ObjectManagerLoadObject(const RCTObjectEntry* entry) |
| 817 | { |
| 818 | auto& objectManager = GetContext()->GetObjectManager(); |
| 819 | Object* loadedObject = objectManager.LoadObject(entry); |
| 820 | return loadedObject; |
| 821 | } |
| 822 | |
| 823 | void ObjectManagerUnloadObjects(const std::vector<ObjectEntryDescriptor>& entries) |
| 824 | { |
no test coverage detected