| Index: pkg/compiler/lib/src/constant_system_dart.dart
|
| diff --git a/pkg/compiler/lib/src/constant_system_dart.dart b/pkg/compiler/lib/src/constant_system_dart.dart
|
| index 1cc239d8f52318904d42a4849f3cda03170801c8..30fb62ed9186249bdd42bb8be687cb00fb789c24 100644
|
| --- a/pkg/compiler/lib/src/constant_system_dart.dart
|
| +++ b/pkg/compiler/lib/src/constant_system_dart.dart
|
| @@ -402,7 +402,7 @@ class DartConstantSystem extends ConstantSystem {
|
| bool isBool(ConstantValue constant) => constant.isBool;
|
| bool isNull(ConstantValue constant) => constant.isNull;
|
|
|
| - bool isSubtype(Compiler compiler, DartType s, DartType t) {
|
| - return compiler.types.isSubtype(s, t);
|
| + bool isSubtype(DartTypes types, DartType s, DartType t) {
|
| + return types.isSubtype(s, t);
|
| }
|
| }
|
|
|