From ebe51d6ce8034487755fca85372a462cfecf9753 Mon Sep 17 00:00:00 2001 From: generatedunixname89002005287564 Date: Fri, 12 Sep 2025 10:18:49 -0700 Subject: [PATCH] Fix CQS signal readability-static-accessed-through-instance in xplat/js/react-native-github/packages (#53756) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53756 Reviewed By: javache Differential Revision: D82289100 fbshipit-source-id: 432d9cdf4116aadbd6f21e8fdb994a91a163bfd5 --- .../react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm b/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm index 58bce7f82d6..6c73da9fb9f 100644 --- a/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm +++ b/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm @@ -26,7 +26,7 @@ RCTHermesInstance::RCTHermesInstance(CrashManagerProvider crashManagerProvider, std::unique_ptr RCTHermesInstance::createJSRuntime( std::shared_ptr msgQueueThread) noexcept { - return _hermesInstance->createJSRuntime( + return facebook::react::HermesInstance::createJSRuntime( _crashManagerProvider ? _crashManagerProvider() : nullptr, std::move(msgQueueThread), _allocInOldGenBeforeTTI); }