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

Unified Diff: pkg/compiler/lib/src/resolved_visitor.dart

Issue 1083633002: Copy OldResolver dispatch logic to SendVisitor and remove OldResolver. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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 | « pkg/compiler/lib/src/dart_backend/placeholder_collector.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/resolved_visitor.dart
diff --git a/pkg/compiler/lib/src/resolved_visitor.dart b/pkg/compiler/lib/src/resolved_visitor.dart
index 561746bf17420763e3d7d7c5d7d3df2aec388180..e30e73c889758a88118b488084e215a4aed3e981 100644
--- a/pkg/compiler/lib/src/resolved_visitor.dart
+++ b/pkg/compiler/lib/src/resolved_visitor.dart
@@ -122,16 +122,6 @@ abstract class BaseResolvedVisitor<R> extends Visitor<R>
}
}
-// TODO(johnniwinther): Remove this. Currently need by the old dart2dart
-// backend.
-abstract class OldResolvedVisitor<R> extends BaseResolvedVisitor<R> {
- OldResolvedVisitor(TreeElements elements) : super(elements);
-
- R visitSend(Send node) {
- return _oldDispatch(node, this);
- }
-}
-
abstract class NewResolvedVisitor<R> extends BaseResolvedVisitor<R>
with SendResolverMixin,
GetBulkMixin<R, dynamic>,
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/placeholder_collector.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698