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

Unified Diff: lib/compiler/implementation/dart_backend/placeholder_collector.dart

Issue 10832398: Remove unused method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/dart_backend/placeholder_collector.dart
diff --git a/lib/compiler/implementation/dart_backend/placeholder_collector.dart b/lib/compiler/implementation/dart_backend/placeholder_collector.dart
index e4813c71903645dea9d6e8e612ea50e4205624be..4c958bd768725333d6af2cc0ce3a26bd3bff1ac2 100644
--- a/lib/compiler/implementation/dart_backend/placeholder_collector.dart
+++ b/lib/compiler/implementation/dart_backend/placeholder_collector.dart
@@ -222,16 +222,6 @@ class PlaceholderCollector extends AbstractVisitor {
});
}
- Type resolveType(TypeAnnotation typeAnnotation) {
Roman 2012/08/21 07:47:13 This method should be used in visitTypeAnnotation
Anton Muhin 2012/08/21 13:17:57 There are enough of hacks in visitTypeAnnotation,
- if (treeElements === null) return null;
- var result = treeElements.getType(typeAnnotation);
- // TODO: Have better type resolution.
- if (result === null) {
- result = compiler.resolveTypeAnnotation(currentElement, typeAnnotation);
- }
- return result;
- }
-
void tryMakePrivateIdentifier(Identifier identifier) {
if (identifier.source.isPrivate()) makePrivateIdentifier(identifier);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698