We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7baad commit b7c1a40Copy full SHA for b7c1a40
packages/react-native/ReactCommon/react/renderer/core/PropsParserContext.h
@@ -17,6 +17,11 @@ namespace react {
17
// It should be used as infrequently as possible - most props can and should
18
// be parsed without any context.
19
struct PropsParserContext {
20
+ PropsParserContext(
21
+ SurfaceId const surfaceId,
22
+ ContextContainer const &contextContainer)
23
+ : surfaceId(surfaceId), contextContainer(contextContainer) {}
24
+
25
// Non-copyable
26
PropsParserContext(const PropsParserContext &) = delete;
27
PropsParserContext &operator=(const PropsParserContext &) = delete;
0 commit comments