| Index: sdk/lib/_internal/compiler/implementation/world.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/world.dart (revision 18306)
|
| +++ sdk/lib/_internal/compiler/implementation/world.dart (working copy)
|
| @@ -25,6 +25,11 @@
|
| rtiDependencies = new Map<ClassElement, Set<ClassElement>>(),
|
| this.compiler = compiler;
|
|
|
| + bool isUsedAsMixin(ClassElement cls) {
|
| + Set<MixinApplicationElement> uses = mixinUses[cls];
|
| + return uses != null && !uses.isEmpty;
|
| + }
|
| +
|
| void populate() {
|
| void addSubtypes(ClassElement cls) {
|
| if (cls.resolutionState != STATE_DONE) {
|
|
|