@@ -98,7 +98,7 @@ class BackendImpacts {
9898
9999 late final BackendImpact getRuntimeTypeArgument = BackendImpact (
100100 globalUses: [],
101- otherImpacts: [newRtiImpact ],
101+ otherImpacts: [rtiImpact ],
102102 );
103103
104104 late final BackendImpact computeSignature = BackendImpact (
@@ -153,7 +153,7 @@ class BackendImpacts {
153153
154154 late final BackendImpact asCheck = BackendImpact (
155155 staticUses: [],
156- otherImpacts: [newRtiImpact ],
156+ otherImpacts: [rtiImpact ],
157157 );
158158
159159 late final BackendImpact stringValues = BackendImpact (
@@ -322,34 +322,34 @@ class BackendImpacts {
322322 );
323323
324324 late final BackendImpact typeCheck = BackendImpact (
325- otherImpacts: [boolValues, newRtiImpact ],
325+ otherImpacts: [boolValues, rtiImpact ],
326326 );
327327
328328 late final BackendImpact genericTypeCheck = BackendImpact (
329329 staticUses: [
330330 // TODO(johnniwinther): Investigate why this is needed.
331331 _commonElements.setArrayType,
332332 ],
333- otherImpacts: [listValues, getRuntimeTypeArgument, newRtiImpact ],
333+ otherImpacts: [listValues, getRuntimeTypeArgument, rtiImpact ],
334334 );
335335
336336 late final BackendImpact genericIsCheck = BackendImpact (
337- otherImpacts: [intValues, newRtiImpact ],
337+ otherImpacts: [intValues, rtiImpact ],
338338 );
339339
340340 late final BackendImpact typeVariableTypeCheck = BackendImpact (
341341 staticUses: [],
342- otherImpacts: [newRtiImpact ],
342+ otherImpacts: [rtiImpact ],
343343 );
344344
345345 late final BackendImpact functionTypeCheck = BackendImpact (
346346 staticUses: [/*helpers.functionTypeTestMetaHelper*/ ],
347- otherImpacts: [newRtiImpact ],
347+ otherImpacts: [rtiImpact ],
348348 );
349349
350350 late final BackendImpact futureOrTypeCheck = BackendImpact (
351351 staticUses: [],
352- otherImpacts: [newRtiImpact ],
352+ otherImpacts: [rtiImpact ],
353353 );
354354
355355 late final BackendImpact nativeTypeCheck = BackendImpact (
@@ -359,7 +359,7 @@ class BackendImpacts {
359359 // [:defineProperty:] is compiled.
360360 _commonElements.defineProperty,
361361 ],
362- otherImpacts: [newRtiImpact ],
362+ otherImpacts: [rtiImpact ],
363363 );
364364
365365 late final BackendImpact closure = BackendImpact (
@@ -532,7 +532,7 @@ class BackendImpacts {
532532 _genericInstantiation[typeArgumentCount] ?? = BackendImpact (
533533 staticUses: [
534534 _commonElements.getInstantiateFunction (typeArgumentCount),
535- _commonElements.instantiatedGenericFunctionTypeNewRti ,
535+ _commonElements.instantiatedGenericFunctionType ,
536536 _commonElements.closureFunctionType,
537537 ],
538538 instantiatedClasses: [
@@ -541,7 +541,7 @@ class BackendImpacts {
541541 );
542542
543543 // TODO(sra): Split into refined impacts.
544- late final BackendImpact newRtiImpact = BackendImpact (
544+ late final BackendImpact rtiImpact = BackendImpact (
545545 staticUses: [
546546 if (_options.interopNullAssertions) _commonElements.interopNullAssertion,
547547 _commonElements.findType,
0 commit comments