| Index: pkg/compiler/lib/src/constants/constant_constructors.dart
|
| diff --git a/pkg/compiler/lib/src/constants/constant_constructors.dart b/pkg/compiler/lib/src/constants/constant_constructors.dart
|
| index 7e3ac9d52c08cc5f4c127a1cfef1319b5af5d8fd..38a182dcd9f7ab3dca258eaf06c7d98bec50a607 100644
|
| --- a/pkg/compiler/lib/src/constants/constant_constructors.dart
|
| +++ b/pkg/compiler/lib/src/constants/constant_constructors.dart
|
| @@ -112,7 +112,7 @@ class ConstantConstructorComputer extends SemanticVisitor
|
| FunctionExpression node,
|
| ConstructorElement constructor,
|
| NodeList parameters,
|
| - InterfaceType redirectionType,
|
| + ResolutionInterfaceType redirectionType,
|
| ConstructorElement redirectionTarget,
|
| _) {
|
| List<String> argumentNames = [];
|
| @@ -230,7 +230,7 @@ class ConstantConstructorComputer extends SemanticVisitor
|
| ConstructedConstantExpression visitSuperConstructorInvoke(
|
| Send node,
|
| ConstructorElement superConstructor,
|
| - InterfaceType type,
|
| + ResolutionInterfaceType type,
|
| NodeList arguments,
|
| CallStructure callStructure,
|
| _) {
|
| @@ -243,7 +243,7 @@ class ConstantConstructorComputer extends SemanticVisitor
|
| ConstructedConstantExpression visitImplicitSuperConstructorInvoke(
|
| FunctionExpression node,
|
| ConstructorElement superConstructor,
|
| - InterfaceType type,
|
| + ResolutionInterfaceType type,
|
| _) {
|
| return new ConstructedConstantExpression(type, superConstructor,
|
| CallStructure.NO_ARGS, const <ConstantExpression>[]);
|
|
|