@@ -87,14 +87,14 @@ import ReactDOMSharedInternals from 'shared/ReactDOMSharedInternals';
87
87
const previousDispatcher =
88
88
ReactDOMSharedInternals . d ; /* ReactDOMCurrentDispatcher */
89
89
ReactDOMSharedInternals . d /* ReactDOMCurrentDispatcher */ = {
90
- flushSyncWork : previousDispatcher . flushSyncWork ,
91
- prefetchDNS,
92
- preconnect,
93
- preload,
94
- preloadModule,
95
- preinitScript,
96
- preinitStyle,
97
- preinitModuleScript,
90
+ f /* flushSyncWork */ : previousDispatcher . f /* flushSyncWork */ ,
91
+ D /* prefetchDNS */ : prefetchDNS ,
92
+ C /* preconnect */ : preconnect ,
93
+ L /* preload */ : preload ,
94
+ m /* preloadModule */ : preloadModule ,
95
+ X /* preinitScript */ : preinitScript ,
96
+ S /* preinitStyle */ : preinitStyle ,
97
+ M /* preinitModuleScript */ : preinitModuleScript ,
98
98
} ;
99
99
100
100
// We make every property of the descriptor optional because it is not a contract that
@@ -5266,7 +5266,7 @@ function prefetchDNS(href: string) {
5266
5266
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5267
5267
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5268
5268
// fetching) and we don't want to warn in those cases.
5269
- previousDispatcher . prefetchDNS ( href ) ;
5269
+ previousDispatcher . D ( /* prefetchDNS */ href ) ;
5270
5270
return ;
5271
5271
}
5272
5272
const resumableState = getResumableState ( request ) ;
@@ -5319,7 +5319,7 @@ function preconnect(href: string, crossOrigin: ?CrossOriginEnum) {
5319
5319
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5320
5320
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5321
5321
// fetching) and we don't want to warn in those cases.
5322
- previousDispatcher . preconnect ( href , crossOrigin ) ;
5322
+ previousDispatcher . C ( /* preconnect */ href , crossOrigin ) ;
5323
5323
return ;
5324
5324
}
5325
5325
const resumableState = getResumableState ( request ) ;
@@ -5380,7 +5380,7 @@ function preload(href: string, as: string, options?: ?PreloadImplOptions) {
5380
5380
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5381
5381
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5382
5382
// fetching) and we don't want to warn in those cases.
5383
- previousDispatcher . preload ( href , as , options ) ;
5383
+ previousDispatcher . L ( /* preload */ href , as , options ) ;
5384
5384
return ;
5385
5385
}
5386
5386
const resumableState = getResumableState ( request ) ;
@@ -5581,7 +5581,7 @@ function preloadModule(
5581
5581
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5582
5582
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5583
5583
// fetching) and we don't want to warn in those cases.
5584
- previousDispatcher . preloadModule ( href , options ) ;
5584
+ previousDispatcher . m ( /* preloadModule */ href , options ) ;
5585
5585
return ;
5586
5586
}
5587
5587
const resumableState = getResumableState ( request ) ;
@@ -5655,7 +5655,7 @@ function preinitStyle(
5655
5655
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5656
5656
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5657
5657
// fetching) and we don't want to warn in those cases.
5658
- previousDispatcher. preinitStyle ( href , precedence , options ) ;
5658
+ previousDispatcher. S ( /* preinitStyle */ href , precedence , options ) ;
5659
5659
return ;
5660
5660
}
5661
5661
const resumableState = getResumableState ( request ) ;
@@ -5740,7 +5740,7 @@ function preinitScript(src: string, options?: ?PreinitScriptOptions): void {
5740
5740
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5741
5741
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5742
5742
// fetching) and we don't want to warn in those cases.
5743
- previousDispatcher. preinitScript ( src , options ) ;
5743
+ previousDispatcher. X ( /* preinitScript */ src , options ) ;
5744
5744
return ;
5745
5745
}
5746
5746
const resumableState = getResumableState ( request ) ;
@@ -5803,7 +5803,7 @@ function preinitModuleScript(
5803
5803
// the resources for this call in either case we opt to do nothing. We can consider making this a warning
5804
5804
// but there may be times where calling a function outside of render is intentional (i.e. to warm up data
5805
5805
// fetching) and we don't want to warn in those cases.
5806
- previousDispatcher. preinitModuleScript ( src , options ) ;
5806
+ previousDispatcher. M ( /* preinitModuleScript */ src , options ) ;
5807
5807
return ;
5808
5808
}
5809
5809
const resumableState = getResumableState ( request ) ;
0 commit comments