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

Side by Side Diff: lib/compiler/implementation/typechecker.dart

Issue 11270008: Add type annotations to remove warnings and fix a bug. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « lib/compiler/implementation/ssa/value_range_analyzer.dart ('k') | lib/compiler/implementation/universe/partial_type_tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698