| Index: lib/compiler/implementation/dart_backend/emitter.dart
|
| diff --git a/lib/compiler/implementation/dart_backend/emitter.dart b/lib/compiler/implementation/dart_backend/emitter.dart
|
| index e4b469e12b1c927e39012b4043ecd2a8b55eee59..eecd40e22762fc7ff33af98a95b294870f62fbc7 100644
|
| --- a/lib/compiler/implementation/dart_backend/emitter.dart
|
| +++ b/lib/compiler/implementation/dart_backend/emitter.dart
|
| @@ -43,7 +43,7 @@ class Emitter {
|
| sb.add(unparser.unparse(classNode.superclass));
|
| }
|
| if (!classNode.interfaces.isEmpty()) {
|
| - sb.add(classElement.isInterface() ? ' extends ' : ' implements ');
|
| + sb.add(' ');
|
| sb.add(unparser.unparse(classNode.interfaces));
|
| }
|
| if (classNode.defaultClause !== null) {
|
|
|