-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ios): patch
React-Fabric
build failure (#1755)
- Loading branch information
Showing
6 changed files
with
73 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
.vs/ | ||
.watchman-* | ||
.yarn/* | ||
!.yarn/patches/ | ||
!.yarn/plugins/ | ||
!.yarn/releases/ | ||
Pods/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/ReactCommon/react/renderer/core/PropsParserContext.h b/ReactCommon/react/renderer/core/PropsParserContext.h | ||
index 7297fbba321e86e7b5eb3438a1eae7063988dddd..c589380bd27382e97dc98ff0fe983d6d3c3864ad 100644 | ||
--- a/ReactCommon/react/renderer/core/PropsParserContext.h | ||
+++ b/ReactCommon/react/renderer/core/PropsParserContext.h | ||
@@ -17,6 +17,11 @@ namespace react { | ||
// It should be used as infrequently as possible - most props can and should | ||
// be parsed without any context. | ||
struct PropsParserContext { | ||
+ PropsParserContext( | ||
+ SurfaceId const surfaceId, | ||
+ ContextContainer const &contextContainer) | ||
+ : surfaceId(surfaceId), contextContainer(contextContainer) {} | ||
+ | ||
// Non-copyable | ||
PropsParserContext(const PropsParserContext &) = delete; | ||
PropsParserContext &operator=(const PropsParserContext &) = delete; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters