mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Extracts modules/utils.js files from the flow and typescript folders in parsers-commons (#34898)
Summary: This PR is a task from https://github.com/facebook/react-native/issues/34872 _Extract the modules/utils.js from the flow and typescript folders in a shared parsers-commons.js file. Then, have the two parsers use the same wrapModuleSchema function for modules._ (`wrapModuleSchema` is a copy-paste mistake, in this case it is `wrapNullable` and `unwrapNullable`) ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [Internal] [Changed] - Extracts Codegen's modules/utils.js files from the flow and typescript folders in parsers-commons Pull Request resolved: https://github.com/facebook/react-native/pull/34898 Test Plan: I ran `yarn jest react-native-codegen`: <img width="775" alt="Capture d’écran 2022-10-07 à 21 29 48" src="https://user-images.githubusercontent.com/17070498/194639515-a446c2cf-daf3-43a1-9833-cd546ca5865e.png"> Reviewed By: cipolleschi Differential Revision: D40193740 Pulled By: cipolleschi fbshipit-source-id: 02cbacc215fe5dd9bdd0839d8796587ab2821906
This commit is contained in:
committed by
Facebook GitHub Bot
parent
0d3596aa4b
commit
24efebf83d
Vendored
+1
-1
@@ -32,7 +32,7 @@ const {capitalize} = require('../../Utils');
|
||||
const {
|
||||
unwrapNullable,
|
||||
wrapNullable,
|
||||
} = require('../../../parsers/flow/modules/utils');
|
||||
} = require('../../../parsers/parsers-commons');
|
||||
|
||||
type StructContext = 'CONSTANTS' | 'REGULAR';
|
||||
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ import type {Nullable} from '../../../../CodegenSchema';
|
||||
import type {StructTypeAnnotation, ConstantsStruct} from '../StructCollector';
|
||||
import type {StructSerilizationOutput} from './serializeStruct';
|
||||
|
||||
const {unwrapNullable} = require('../../../../parsers/flow/modules/utils');
|
||||
const {unwrapNullable} = require('../../../../parsers/parsers-commons');
|
||||
|
||||
const StructTemplate = ({
|
||||
hasteModuleName,
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ import type {Nullable} from '../../../../CodegenSchema';
|
||||
import type {StructTypeAnnotation, RegularStruct} from '../StructCollector';
|
||||
import type {StructSerilizationOutput} from './serializeStruct';
|
||||
|
||||
const {unwrapNullable} = require('../../../../parsers/flow/modules/utils');
|
||||
const {unwrapNullable} = require('../../../../parsers/parsers-commons');
|
||||
|
||||
const StructTemplate = ({
|
||||
hasteModuleName,
|
||||
|
||||
Vendored
+1
-1
@@ -27,7 +27,7 @@ const {capitalize} = require('../../Utils');
|
||||
const {
|
||||
wrapNullable,
|
||||
unwrapNullable,
|
||||
} = require('../../../parsers/flow/modules/utils');
|
||||
} = require('../../../parsers/parsers-commons');
|
||||
|
||||
const ProtocolMethodTemplate = ({
|
||||
returnObjCType,
|
||||
|
||||
Reference in New Issue
Block a user