| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |