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

Unified Diff: sdk/lib/_internal/compiler/implementation/tree/nodes.dart

Issue 14907008: Remove support for interface in dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 7 years, 7 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: sdk/lib/_internal/compiler/implementation/tree/nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
index 604ef462f7c4b4741371755d9c754b08464c936e..118996b83a7dd5c398d9c5df2650e560b9a5dc5d 100644
--- a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
+++ b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
@@ -213,15 +213,12 @@ class ClassNode extends Node {
final NodeList typeParameters;
final NodeList body;
- // TODO(ahe, karlklose): the default keyword is not recorded.
- final TypeAnnotation defaultClause;
-
final Token beginToken;
final Token extendsKeyword;
final Token endToken;
ClassNode(this.modifiers, this.name, this.typeParameters, this.superclass,
- this.interfaces, this.defaultClause, this.beginToken,
+ this.interfaces, this.beginToken,
this.extendsKeyword, this.body, this.endToken);
ClassNode asClassNode() => this;

Powered by Google App Engine
This is Rietveld 408576698