| Index: sdk/lib/_internal/compiler/implementation/universe/full_function_set.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/universe/full_function_set.dart (revision 22929)
|
| +++ sdk/lib/_internal/compiler/implementation/universe/full_function_set.dart (working copy)
|
| @@ -59,7 +59,7 @@
|
| ClassElement single = classes[0];
|
| // Return true if the single class in our list does not have a
|
| // single instantiated subclass.
|
| - Set<ClassElement> subtypes = compiler.world.subtypes[single];
|
| + Set<ClassElement> subtypes = compiler.world.subtypesOf(single);
|
| return subtypes == null
|
| || subtypes.every((ClassElement each) => !each.isSubclassOf(single));
|
| }
|
|
|