| Index: pkg/compiler/lib/src/ssa/builder.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/builder.dart b/pkg/compiler/lib/src/ssa/builder.dart
|
| index efa17b031c22f3d80d04814b6a8849571e9e048f..9995366b7ea4a28f17f6ca92d55a1769132875f3 100644
|
| --- a/pkg/compiler/lib/src/ssa/builder.dart
|
| +++ b/pkg/compiler/lib/src/ssa/builder.dart
|
| @@ -1231,7 +1231,8 @@ class SsaBuilder extends ast.Visitor
|
| List<DartType> instantiatedTypes;
|
| addInlinedInstantiation(type);
|
| if (!currentInlinedInstantiations.isEmpty) {
|
| - instantiatedTypes = new List<DartType>.from(currentInlinedInstantiations);
|
| + instantiatedTypes =
|
| + new List<ResolutionInterfaceType>.from(currentInlinedInstantiations);
|
| }
|
|
|
| HInstruction newObject;
|
| @@ -4110,8 +4111,8 @@ class SsaBuilder extends ast.Visitor
|
| targetCanThrow: targetCanThrow)
|
| ..sourceInformation = sourceInformation;
|
| if (currentInlinedInstantiations.isNotEmpty) {
|
| - instruction.instantiatedTypes =
|
| - new List<ResolutionDartType>.from(currentInlinedInstantiations);
|
| + instruction.instantiatedTypes = new List<ResolutionInterfaceType>.from(
|
| + currentInlinedInstantiations);
|
| }
|
| instruction.sideEffects = closedWorld.getSideEffectsOfElement(element);
|
| }
|
|
|