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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/elements/visitor.dart

Issue 99303004: Remove unused API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 7 years 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
Index: dart/sdk/lib/_internal/compiler/implementation/elements/visitor.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/elements/visitor.dart b/dart/sdk/lib/_internal/compiler/implementation/elements/visitor.dart
index 714635ae5beb35d593ad0baeb54fbb035f6ce8be..f8f13774303a16c38020295e3067fae832f34dba 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/elements/visitor.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/elements/visitor.dart
@@ -9,7 +9,6 @@ import '../ssa/ssa.dart'
show InterceptedElement;
import '../closure.dart'
show ThisElement,
- CheckVariableElement,
BoxElement,
BoxFieldElement,
ClosureClassElement,
@@ -44,7 +43,6 @@ abstract class ElementVisitor<R> {
R visitTypeVariableElement(TypeVariableElement e) => visitElement(e);
R visitInterceptedElement(InterceptedElement e) => visitElement(e);
R visitThisElement(ThisElement e) => visitElement(e);
- R visitCheckVariableElement(CheckVariableElement e ) => visitElement(e);
R visitBoxElement(BoxElement e) => visitElement(e);
R visitBoxFieldElement(BoxFieldElement e) => visitElement(e);
R visitClosureClassElement(ClosureClassElement e) => visitClassElement(e);

Powered by Google App Engine
This is Rietveld 408576698