| Index: pkg/compiler/lib/src/universe/function_set.dart
|
| diff --git a/pkg/compiler/lib/src/universe/function_set.dart b/pkg/compiler/lib/src/universe/function_set.dart
|
| index db99578e6f266d91cf88758eb5c0769b55a04ce5..7260c6de75e42ae57d2a6d8e9bdada0b9bc17120 100644
|
| --- a/pkg/compiler/lib/src/universe/function_set.dart
|
| +++ b/pkg/compiler/lib/src/universe/function_set.dart
|
| @@ -243,7 +243,7 @@ class FullFunctionSetQuery extends FunctionSetQuery {
|
| * Compute the type of all potential receivers of this function set.
|
| */
|
| TypeMask computeMask(ClassWorld classWorld) {
|
| - assert(classWorld.hasAnySubclass(classWorld.objectClass));
|
| + assert(classWorld.hasAnyStrictSubclass(classWorld.objectClass));
|
| if (_mask != null) return _mask;
|
| return _mask = new TypeMask.unionOf(functions
|
| .expand((element) {
|
|
|