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

Unified Diff: frog/leg/typechecker.dart

Issue 9148021: Implement for-in. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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/typechecker.dart
diff --git a/frog/leg/typechecker.dart b/frog/leg/typechecker.dart
index b5799c585daa5a5493afcbe05e9aa16489b81680..841392f1dd2aec9d473b6cf0a8165bcaccb788c2 100644
--- a/frog/leg/typechecker.dart
+++ b/frog/leg/typechecker.dart
@@ -587,7 +587,7 @@ class TypeCheckerVisitor implements Visitor<Type> {
}
visitForInStatement(ForInStatement node) {
- compiler.unimplemented('visitForInStatement', node: node);
+ node.visitChildren(this);
}
visitLabelledStatement(LabelledStatement node) {

Powered by Google App Engine
This is Rietveld 408576698