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

Unified Diff: lib/src/tree_base.dart

Issue 1969953002: Make TreeNode.visit return dynamic. (Closed) Base URL: git@github.com:dart-lang/csslib.git@master
Patch Set: Created 4 years, 7 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 | « CHANGELOG.md ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/tree_base.dart
diff --git a/lib/src/tree_base.dart b/lib/src/tree_base.dart
index 095b4932f081cb162b8acc547f08cbe102920b3c..51207e136ab26f451dd91795f30758b400aaf5dc 100644
--- a/lib/src/tree_base.dart
+++ b/lib/src/tree_base.dart
@@ -16,7 +16,7 @@ abstract class TreeNode {
TreeNode clone();
/** Classic double-dispatch visitor for implementing passes. */
- void visit(VisitorBase visitor);
+ visit(VisitorBase visitor);
/** A multiline string showing the node and its children. */
String toDebugString() {
« no previous file with comments | « CHANGELOG.md ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698