mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 14:48:25 +00:00
Summary: I need this to set up QPL hooks in Instagram on iOS (see D13668326). Reviewed By: mhorowitz Differential Revision: D13668327 fbshipit-source-id: ee17d29ec0bbf4ef74736b1d7a095f955c0a7cc1
33 lines
895 B
Plaintext
33 lines
895 B
Plaintext
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "JSCExecutorFactory.h"
|
|
|
|
#import <React/RCTLog.h>
|
|
#import <jsi/JSCRuntime.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
std::unique_ptr<JSExecutor> JSCExecutorFactory::createJSExecutor(
|
|
std::shared_ptr<ExecutorDelegate> delegate,
|
|
std::shared_ptr<MessageQueueThread> jsQueue) {
|
|
return folly::make_unique<JSIExecutor>(
|
|
facebook::jsc::makeJSCRuntime(),
|
|
delegate,
|
|
[](const std::string &message, unsigned int logLevel) {
|
|
_RCTLogJavaScriptInternal(
|
|
static_cast<RCTLogLevel>(logLevel),
|
|
[NSString stringWithUTF8String:message.c_str()]);
|
|
},
|
|
JSIExecutor::defaultTimeoutInvoker,
|
|
std::move(runtimeInstaller_));
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|