| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 static const bool LOG_FAILURES = false; | 9 static const bool LOG_FAILURES = false; |
| 10 | 10 |
| (...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 compiler.unimplemented('visitNode', node: node); | 982 compiler.unimplemented('visitNode', node: node); |
| 983 } | 983 } |
| 984 | 984 |
| 985 DartType visitStatement(Statement node) { | 985 DartType visitStatement(Statement node) { |
| 986 compiler.unimplemented('visitNode', node: node); | 986 compiler.unimplemented('visitNode', node: node); |
| 987 } | 987 } |
| 988 | 988 |
| 989 DartType visitStringNode(StringNode node) { | 989 DartType visitStringNode(StringNode node) { |
| 990 compiler.unimplemented('visitNode', node: node); | 990 compiler.unimplemented('visitNode', node: node); |
| 991 } | 991 } |
| 992 |
| 993 DartType visitLibraryDependency(LibraryDependency node) { |
| 994 compiler.unimplemented('visitNode', node: node); |
| 995 } |
| 992 } | 996 } |
| OLD | NEW |