| Index: lib/compiler/implementation/types/concrete_types_inferrer.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/types/concrete_types_inferrer.dart (revision 13779)
|
| +++ lib/compiler/implementation/types/concrete_types_inferrer.dart (working copy)
|
| @@ -92,7 +92,7 @@
|
|
|
| abstract ConcreteType union(ConcreteType other);
|
| abstract bool isUnkown();
|
| - abstract Set<BaseType> get baseTypes();
|
| + abstract Set<BaseType> get baseTypes;
|
|
|
| /**
|
| * Returns the unique element of [: this :] if [: this :] is a singleton,
|
| @@ -108,7 +108,7 @@
|
| const UnknownConcreteType();
|
| bool isUnkown() => true;
|
| bool operator ==(ConcreteType other) => identical(this, other);
|
| - Set<BaseType> get baseTypes() =>
|
| + Set<BaseType> get baseTypes =>
|
| new Set<BaseType>.from([const UnknownBaseType()]);
|
| int hashCode() => 0;
|
| ConcreteType union(ConcreteType other) => this;
|
|
|