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

Unified Diff: pkg/kernel/lib/visitor.dart

Issue 2561723003: Merge kernel closure conversion into the Dart SDK (Closed)
Patch Set: Remove path constraint Created 4 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
« no previous file with comments | « pkg/kernel/lib/type_propagation/type_propagation.dart ('k') | pkg/kernel/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/visitor.dart
diff --git a/pkg/kernel/lib/visitor.dart b/pkg/kernel/lib/visitor.dart
index c48f0d425a7165975a4480578058dd134c21b8e2..bbefd951e7e01c08f8e2dfe07ed5ab402ac9e0b9 100644
--- a/pkg/kernel/lib/visitor.dart
+++ b/pkg/kernel/lib/visitor.dart
@@ -235,9 +235,7 @@ class MemberReferenceVisitor<R> {
}
class Visitor<R> extends TreeVisitor<R>
- implements
- DartTypeVisitor<R>,
- MemberReferenceVisitor<R> {
+ implements DartTypeVisitor<R>, MemberReferenceVisitor<R> {
/// The catch-all case, except for references.
R defaultNode(Node node) => null;
R defaultTreeNode(TreeNode node) => defaultNode(node);
« no previous file with comments | « pkg/kernel/lib/type_propagation/type_propagation.dart ('k') | pkg/kernel/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698