mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 13:01:13 +00:00
7d2021ec49
Differential Revision: D5890466 fbshipit-source-id: e7805f90a7c446f5f75427c3fadcd133a3f7ad18
23 lines
626 B
C++
23 lines
626 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include "JSIndexedRAMBundleRegistry.h"
|
|
|
|
#include <cxxreact/JSIndexedRAMBundle.h>
|
|
#include <folly/Memory.h>
|
|
|
|
#include "oss-compat-util.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
std::unique_ptr<JSModulesUnbundle> JSIndexedRAMBundleRegistry::bundleById(uint32_t index) const {
|
|
return folly::make_unique<JSIndexedRAMBundle>(bundlePathById(index).c_str());
|
|
}
|
|
|
|
std::string JSIndexedRAMBundleRegistry::bundlePathById(uint32_t index) const {
|
|
return m_baseDirectoryPath + "/js-bundles/" + toString(index) + ".jsbundle";
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|