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

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

Issue 10831406: Make ClassNode visit type parameters in visitChildren (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
« no previous file with comments | « no previous file | tests/compiler/dart2js/unparser_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/tree/nodes.dart
diff --git a/lib/compiler/implementation/tree/nodes.dart b/lib/compiler/implementation/tree/nodes.dart
index f3d37ec5e0467ee81f3b57eaafd24c0b0318e886..b9a355a71a4c42833b603fcb5d2ef0ca321fb25c 100644
--- a/lib/compiler/implementation/tree/nodes.dart
+++ b/lib/compiler/implementation/tree/nodes.dart
@@ -206,6 +206,7 @@ class ClassNode extends Node {
if (name !== null) name.accept(visitor);
if (superclass !== null) superclass.accept(visitor);
if (interfaces !== null) interfaces.accept(visitor);
+ if (typeParameters !== null) typeParameters.accept(visitor);
Roman 2012/08/21 14:36:37 could there be any reason we didn't visit type par
ahe 2012/08/21 14:45:27 Oversight. However, messick already have a CL in t
messick 2012/08/21 14:56:37 Please commit this CL after moving the new code to
Roman 2012/08/21 15:00:18 207 in my CL. Done.
}
bool get isInterface() => beginToken.stringValue === 'interface';
« no previous file with comments | « no previous file | tests/compiler/dart2js/unparser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698