| 105 | }; |
| 106 | |
| 107 | static Ref<Bundle> makeInitializedBundle(const StringBox& moduleName, bool hasRemoteAssets) { |
| 108 | auto bundle = makeShared<Bundle>(moduleName, ConsoleLogger::getLogger()); |
| 109 | auto initializer = bundle->prepareForInit(); |
| 110 | initializer.initWithLocalArchive(makeShared<ValdiModuleArchive>(), hasRemoteAssets); |
| 111 | return bundle; |
| 112 | } |
| 113 | |
| 114 | struct AssetsManagerWrapper : public AssetsManagerListener { |
| 115 | Ref<MainQueue> mainQueue; |
no test coverage detected