File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed
packages/rn-tester/js/utils Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -381,6 +381,7 @@ class MessageQueue {
381
381
return (
382
382
// $FlowFixMe[cannot-resolve-name]
383
383
typeof DebuggerInternal !== 'undefined' &&
384
+ // $FlowFixMe[cannot-resolve-name]
384
385
DebuggerInternal . shouldPauseOnThrow === true
385
386
) ;
386
387
}
Original file line number Diff line number Diff line change @@ -123,12 +123,14 @@ function resolveSizeInPlace(
123
123
) {
124
124
if ( style [ direction ] !== null && typeof style [ direction ] === 'string' ) {
125
125
if ( style [ direction ] . indexOf ( '%' ) !== - 1 ) {
126
+ // $FlowFixMe[prop-missing]
126
127
style [ direction ] =
127
128
( parseFloat ( style [ direction ] ) / 100.0 ) *
128
129
Dimensions . get ( 'window' ) [ dimension ] ;
129
130
}
130
131
if ( style [ direction ] === 'auto' ) {
131
132
// Ignore auto sizing in frame drawing due to complexity of correctly rendering this
133
+ // $FlowFixMe[prop-missing]
132
134
style [ direction ] = 0 ;
133
135
}
134
136
}
Original file line number Diff line number Diff line change @@ -416,6 +416,7 @@ class VirtualizedSectionList<
416
416
if ( updateHighlightFn != null ) {
417
417
this . _updateHighlightMap [ cellKey ] = updateHighlightFn ;
418
418
} else {
419
+ // $FlowFixMe[prop-missing]
419
420
delete this . _updateHighlightFor [ cellKey ] ;
420
421
}
421
422
} ;
Original file line number Diff line number Diff line change @@ -339,6 +339,7 @@ if (ReactNativeFeatureFlags.shouldEmitW3CPointerEvents()) {
339
339
const Modules: { ...} = { } ;
340
340
341
341
APIs.concat(Components).forEach(Example => {
342
+ // $FlowFixMe[prop-missing]
342
343
Modules [ Example . key ] = Example . module ;
343
344
} );
344
345
You can’t perform that action at this time.
0 commit comments