Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<e799e5ce5aea7adbef02a7e7431f8a35>>
* @generated SignedSource<<4d5d0795ed4cea8c1e185f6fe3fa0fad>>
*/

/**
Expand Down Expand Up @@ -35,7 +35,7 @@ namespace facebook::react {

NativeReactNativeFeatureFlags::NativeReactNativeFeatureFlags(
std::shared_ptr<CallInvoker> jsInvoker)
: NativeReactNativeFeatureFlagsCxxSpecJSI(std::move(jsInvoker)) {}
: NativeReactNativeFeatureFlagsCxxSpec(std::move(jsInvoker)) {}

bool NativeReactNativeFeatureFlags::commonTestFlag(
jsi::Runtime& /*runtime*/) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<990b6518e7b1d196deb0965e9ada6605>>
* @generated SignedSource<<c85e22d73a1e272c7838c4a4e9db9b6d>>
*/

/**
Expand All @@ -28,7 +28,7 @@
namespace facebook::react {

class NativeReactNativeFeatureFlags
: public NativeReactNativeFeatureFlagsCxxSpecJSI {
: public NativeReactNativeFeatureFlagsCxxSpec<NativeReactNativeFeatureFlags> {
public:
NativeReactNativeFeatureFlags(std::shared_ptr<CallInvoker> jsInvoker);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace facebook::react {

NativeReactNativeFeatureFlags::NativeReactNativeFeatureFlags(
std::shared_ptr<CallInvoker> jsInvoker)
: NativeReactNativeFeatureFlagsCxxSpecJSI(std::move(jsInvoker)) {}
: NativeReactNativeFeatureFlagsCxxSpec(std::move(jsInvoker)) {}

${Object.entries(definitions.common)
.map(([flagName, flagConfig]) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ${DO_NOT_MODIFY_COMMENT}
namespace facebook::react {
class NativeReactNativeFeatureFlags
: public NativeReactNativeFeatureFlagsCxxSpecJSI {
: public NativeReactNativeFeatureFlagsCxxSpec<NativeReactNativeFeatureFlags> {
public:
NativeReactNativeFeatureFlags(std::shared_ptr<CallInvoker> jsInvoker);
Expand Down
Loading