mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff is an implementation of jsi::Runtime which uses JSC as the virtual machine. All of the JSC-specific details are encapsulated here. @public Reviewed By: RSNara Differential Revision: D9328242 fbshipit-source-id: be3c7bed161916c1cb9a48182600b558f054eadc
15 lines
244 B
C++
15 lines
244 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <jsi/jsi.h>
|
|
#include <memory.h>
|
|
|
|
namespace facebook {
|
|
namespace jsc {
|
|
|
|
std::unique_ptr<jsi::Runtime> makeJSCRuntime();
|
|
|
|
} // namespace jsc
|
|
} // namespace facebook
|