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

Unified Diff: frog/leg/tree/visitors.dart

Issue 9616058: Implement parsing and resolving of type-variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 9 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: frog/leg/tree/visitors.dart
diff --git a/frog/leg/tree/visitors.dart b/frog/leg/tree/visitors.dart
index b0e96a4b6d5ff3654dd0500b3ac95e3284440fdd..d9e2b4db4e795ec5f1b73db23b32713b1f079b29 100644
--- a/frog/leg/tree/visitors.dart
+++ b/frog/leg/tree/visitors.dart
@@ -61,6 +61,7 @@ class AbstractVisitor<R> implements Visitor<R> {
R visitTryStatement(TryStatement node) => visitStatement(node);
R visitTypeAnnotation(TypeAnnotation node) => visitNode(node);
R visitTypedef(Typedef node) => visitNode(node);
+ R visitTypeVariable(TypeVariable node) => visitNode(node);
R visitVariableDefinitions(VariableDefinitions node) => visitStatement(node);
R visitWhile(While node) => visitLoop(node);
}

Powered by Google App Engine
This is Rietveld 408576698