| Index: sdk/lib/_internal/compiler/implementation/types/simple_types_inferrer.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/types/simple_types_inferrer.dart (revision 22167)
|
| +++ sdk/lib/_internal/compiler/implementation/types/simple_types_inferrer.dart (working copy)
|
| @@ -12,7 +12,7 @@
|
| import '../native_handler.dart' as native;
|
| import '../tree/tree.dart';
|
| import '../util/util.dart' show Link;
|
| -import 'types.dart' show TypesInferrer, TypeMask;
|
| +import 'types.dart' show TypesInferrer, FlatTypeMask, TypeMask;
|
|
|
| // BUG(8802): There's a bug in the analyzer that makes the re-export
|
| // of Selector from dart2jslib.dart fail. For now, we work around that
|
| @@ -100,7 +100,7 @@
|
| * A sentinel type mask class used by the inferrer for the give up
|
| * type, and the dynamic type.
|
| */
|
| -class SentinelTypeMask extends TypeMask {
|
| +class SentinelTypeMask extends FlatTypeMask {
|
| final String name;
|
|
|
| SentinelTypeMask(this.name) : super(null, 0, false);
|
|
|