Index: pkg/compiler/lib/src/js_backend/backend_impact.dart |
diff --git a/pkg/compiler/lib/src/js_backend/backend_impact.dart b/pkg/compiler/lib/src/js_backend/backend_impact.dart |
index 32a2d37ad98b8ae851e90d2cf8e859bd90a51607..4905f0d8acb198731aaddd829c5a3305854d9d9e 100644 |
--- a/pkg/compiler/lib/src/js_backend/backend_impact.dart |
+++ b/pkg/compiler/lib/src/js_backend/backend_impact.dart |
@@ -202,7 +202,7 @@ class BackendImpacts { |
return _throwNoSuchMethod ??= new BackendImpact( |
instantiatedClasses: _options.useKernel |
? [ |
- _commonElements.symbolClass, |
+ _commonElements.symbolImplementationClass, |
] |
: [], |
staticUses: _options.useKernel |
@@ -215,7 +215,7 @@ class BackendImpacts { |
_commonElements.unresolvedTopLevelMethodError, |
_commonElements.unresolvedTopLevelGetterError, |
_commonElements.unresolvedTopLevelSetterError, |
- _commonElements.symbolConstructor, |
+ _commonElements.symbolConstructorTarget, |
] |
: [ |
_commonElements.throwNoSuchMethod, |
@@ -335,8 +335,8 @@ class BackendImpacts { |
BackendImpact get constSymbol { |
return _constSymbol ??= new BackendImpact( |
- instantiatedClasses: [_commonElements.symbolClass], |
- staticUses: [_commonElements.symbolConstructor]); |
+ instantiatedClasses: [_commonElements.symbolImplementationClass], |
+ staticUses: [_commonElements.symbolConstructorTarget]); |
} |
/// Helper for registering that `int` is needed. |