| Index: pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/builder_kernel.dart b/pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| index 6e1c994162e72dd815019d53163c0417f2897d1a..2523193f144aa393b911138113ae2772ff8a68cf 100644
|
| --- a/pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| +++ b/pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| @@ -277,7 +277,7 @@ class KernelSsaBuilder extends ir.Visitor with GraphBuilder {
|
| constructorArguments,
|
| new TypeMask.nonNullExact(
|
| astAdapter.getClass(constructor.enclosingClass), closedWorld),
|
| - instantiatedTypes: <DartType>[
|
| + instantiatedTypes: <ResolutionInterfaceType>[
|
| astAdapter.getClass(constructor.enclosingClass).thisType
|
| ],
|
| hasRtiInput: false);
|
| @@ -2517,7 +2517,7 @@ class KernelSsaBuilder extends ir.Visitor with GraphBuilder {
|
| targetCanThrow: astAdapter.getCanThrow(target, closedWorld));
|
| if (currentImplicitInstantiations.isNotEmpty) {
|
| instruction.instantiatedTypes =
|
| - new List<ResolutionDartType>.from(currentImplicitInstantiations);
|
| + new List<ResolutionInterfaceType>.from(currentImplicitInstantiations);
|
| }
|
| instruction.sideEffects = astAdapter.getSideEffects(target, closedWorld);
|
|
|
|
|