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

Unified Diff: pkg/compiler/lib/src/elements/visitor.dart

Issue 1859343004: dartfmt pkg/compiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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/elements/names.dart ('k') | pkg/compiler/lib/src/enqueue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/elements/visitor.dart
diff --git a/pkg/compiler/lib/src/elements/visitor.dart b/pkg/compiler/lib/src/elements/visitor.dart
index b571e56469ed807d28f79d9be183a0da60b00e20..6df2781124c6dba9a00be8714aed3d09df5d3e2a 100644
--- a/pkg/compiler/lib/src/elements/visitor.dart
+++ b/pkg/compiler/lib/src/elements/visitor.dart
@@ -6,9 +6,7 @@ library visitor;
import 'elements.dart';
import '../closure.dart'
- show BoxFieldElement,
- ClosureClassElement,
- ClosureFieldElement;
+ show BoxFieldElement, ClosureClassElement, ClosureFieldElement;
abstract class ElementVisitor<R, A> {
const ElementVisitor();
@@ -45,7 +43,6 @@ abstract class ElementVisitor<R, A> {
R visitClosureFieldElement(ClosureFieldElement e, A arg) => null;
}
-
abstract class BaseElementVisitor<R, A> extends ElementVisitor<R, A> {
const BaseElementVisitor();
@@ -202,4 +199,4 @@ abstract class BaseElementVisitor<R, A> extends ElementVisitor<R, A> {
R visitClosureFieldElement(ClosureFieldElement e, A arg) {
return visitVariableElement(e, arg);
}
-}
+}
« no previous file with comments | « pkg/compiler/lib/src/elements/names.dart ('k') | pkg/compiler/lib/src/enqueue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698