| Index: pkg/compiler/lib/src/js_emitter/model.dart
|
| diff --git a/pkg/compiler/lib/src/js_emitter/model.dart b/pkg/compiler/lib/src/js_emitter/model.dart
|
| index 6bf9e2abdc6f94d49b0d93ca2f6dc3677ae2aa5a..e0a8fda68e242fc7a187b34cbe0375f2b2bb86f1 100644
|
| --- a/pkg/compiler/lib/src/js_emitter/model.dart
|
| +++ b/pkg/compiler/lib/src/js_emitter/model.dart
|
| @@ -282,6 +282,8 @@ class Class implements FieldContainer {
|
|
|
| int get superclassHolderIndex =>
|
| (superclass == null) ? 0 : superclass.holder.index;
|
| +
|
| + String toString() => 'Class(${element.name})';
|
| }
|
|
|
| class MixinApplication extends Class {
|
|
|