@@ -94,15 +94,8 @@ const HTML = '__html';
94
94
let warnedUnknownTags : {
95
95
[ key : string ] : boolean ,
96
96
} ;
97
-
98
- let validatePropertiesInDevelopment ;
99
- let warnForPropDifference ;
100
- let warnForExtraAttributes ;
101
- let warnForInvalidEventListener ;
102
97
let canDiffStyleForHydrationWarning ;
103
98
104
- let normalizeHTML ;
105
-
106
99
if ( __DEV__ ) {
107
100
warnedUnknownTags = {
108
101
// There are working polyfills for <dialog>. Let people use it.
@@ -115,15 +108,6 @@ if (__DEV__) {
115
108
webview : true ,
116
109
} ;
117
110
118
- validatePropertiesInDevelopment = function ( type : string , props : any ) {
119
- validateARIAProperties ( type , props ) ;
120
- validateInputProperties ( type , props ) ;
121
- validateUnknownProperties ( type , props , {
122
- registrationNameDependencies,
123
- possibleRegistrationNames,
124
- } ) ;
125
- } ;
126
-
127
111
// IE 11 parses & normalizes the style attribute as opposed to other
128
112
// browsers. It adds spaces and sorts the properties in some
129
113
// non-alphabetical order. Handling that would require sorting CSS
@@ -133,12 +117,25 @@ if (__DEV__) {
133
117
// in that browser completely in favor of doing all that work.
134
118
// See https://github.com/facebook/react/issues/11807
135
119
canDiffStyleForHydrationWarning = canUseDOM && ! document . documentMode ;
120
+ }
136
121
137
- warnForPropDifference = function (
138
- propName : string ,
139
- serverValue : mixed ,
140
- clientValue : mixed ,
141
- ) {
122
+ function validatePropertiesInDevelopment ( type : string , props : any ) {
123
+ if ( __DEV__ ) {
124
+ validateARIAProperties ( type , props ) ;
125
+ validateInputProperties ( type , props ) ;
126
+ validateUnknownProperties ( type , props , {
127
+ registrationNameDependencies,
128
+ possibleRegistrationNames,
129
+ } ) ;
130
+ }
131
+ }
132
+
133
+ function warnForPropDifference (
134
+ propName : string ,
135
+ serverValue : mixed ,
136
+ clientValue : mixed ,
137
+ ) {
138
+ if ( __DEV__ ) {
142
139
if ( didWarnInvalidHydration ) {
143
140
return ;
144
141
}
@@ -156,9 +153,11 @@ if (__DEV__) {
156
153
JSON . stringify ( normalizedServerValue ) ,
157
154
JSON . stringify ( normalizedClientValue ) ,
158
155
) ;
159
- } ;
156
+ }
157
+ }
160
158
161
- warnForExtraAttributes = function ( attributeNames : Set < string > ) {
159
+ function warnForExtraAttributes ( attributeNames : Set < string > ) {
160
+ if ( __DEV__ ) {
162
161
if ( didWarnInvalidHydration ) {
163
162
return ;
164
163
}
@@ -168,12 +167,11 @@ if (__DEV__) {
168
167
names . push ( name ) ;
169
168
} ) ;
170
169
console . error ( 'Extra attributes from the server: %s' , names ) ;
171
- } ;
170
+ }
171
+ }
172
172
173
- warnForInvalidEventListener = function (
174
- registrationName : string ,
175
- listener : any ,
176
- ) {
173
+ function warnForInvalidEventListener ( registrationName : string , listener : any ) {
174
+ if ( __DEV__ ) {
177
175
if ( listener === false ) {
178
176
console . error (
179
177
'Expected `%s` listener to be a function, instead got `false`.\n\n' +
@@ -190,11 +188,13 @@ if (__DEV__) {
190
188
typeof listener ,
191
189
) ;
192
190
}
193
- } ;
191
+ }
192
+ }
194
193
195
- // Parse the HTML and read it back to normalize the HTML string so that it
196
- // can be used for comparison.
197
- normalizeHTML = function ( parent : Element , html : string ) {
194
+ // Parse the HTML and read it back to normalize the HTML string so that it
195
+ // can be used for comparison.
196
+ function normalizeHTML ( parent : Element , html : string ) {
197
+ if ( __DEV__ ) {
198
198
// We could have created a separate document here to avoid
199
199
// re-initializing custom elements if they exist. But this breaks
200
200
// how <noscript> is being handled. So we use the same document.
@@ -208,7 +208,7 @@ if (__DEV__) {
208
208
) ;
209
209
testElement . innerHTML = html ;
210
210
return testElement . innerHTML ;
211
- } ;
211
+ }
212
212
}
213
213
214
214
// HTML parsing normalizes CR and CRLF to LF.
0 commit comments