Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Unified Diff: lib/compiler/implementation/dart_backend/emitter.dart

Issue 10832129: Get back recording 'implements' and 'extends' keyword on NodeList (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « no previous file | lib/compiler/implementation/scanner/listener.dart » ('j') | lib/compiler/implementation/tree/unparser.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698