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

Side by Side Diff: frog/leg/typechecker.dart

Issue 9148021: Implement for-in. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Made test work. 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « frog/leg/ssa/builder.dart ('k') | frog/tests/leg_only/src/ForInTest.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 class TypeCheckerTask extends CompilerTask { 5 class TypeCheckerTask extends CompilerTask {
6 TypeCheckerTask(Compiler compiler) : super(compiler); 6 TypeCheckerTask(Compiler compiler) : super(compiler);
7 String get name() => "Type checker"; 7 String get name() => "Type checker";
8 8
9 void check(Node tree, TreeElements elements) { 9 void check(Node tree, TreeElements elements) {
10 measure(() { 10 measure(() {
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 580
581 visitBreakStatement(BreakStatement node) { 581 visitBreakStatement(BreakStatement node) {
582 compiler.unimplemented('visitBreakStatement', node: node); 582 compiler.unimplemented('visitBreakStatement', node: node);
583 } 583 }
584 584
585 visitContinueStatement(ContinueStatement node) { 585 visitContinueStatement(ContinueStatement node) {
586 compiler.unimplemented('visitContinueStatement', node: node); 586 compiler.unimplemented('visitContinueStatement', node: node);
587 } 587 }
588 588
589 visitForInStatement(ForInStatement node) { 589 visitForInStatement(ForInStatement node) {
590 compiler.unimplemented('visitForInStatement', node: node); 590 node.visitChildren(this);
591 } 591 }
592 592
593 visitLabelledStatement(LabelledStatement node) { 593 visitLabelledStatement(LabelledStatement node) {
594 compiler.unimplemented('visitLabelledStatement', node: node); 594 compiler.unimplemented('visitLabelledStatement', node: node);
595 } 595 }
596 596
597 visitLiteralMap(LiteralMap node) { 597 visitLiteralMap(LiteralMap node) {
598 compiler.unimplemented('visitLiteralMap', node: node); 598 compiler.unimplemented('visitLiteralMap', node: node);
599 } 599 }
600 600
(...skipping 18 matching lines...) Expand all
619 } 619 }
620 620
621 visitCatchBlock(CatchBlock node) { 621 visitCatchBlock(CatchBlock node) {
622 compiler.unimplemented('visitCatchBlock', node: node); 622 compiler.unimplemented('visitCatchBlock', node: node);
623 } 623 }
624 624
625 visitTypedef(Typedef node) { 625 visitTypedef(Typedef node) {
626 compiler.unimplemented('visitTypedef', node: node); 626 compiler.unimplemented('visitTypedef', node: node);
627 } 627 }
628 } 628 }
OLDNEW
« no previous file with comments | « frog/leg/ssa/builder.dart ('k') | frog/tests/leg_only/src/ForInTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698