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

Unified Diff: pkg/analyzer/lib/dart/ast/ast.dart

Issue 2623453003: Add visitors that throw by default (Closed)
Patch Set: rework implementation Created 3 years, 11 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 | « no previous file | pkg/analyzer/lib/dart/ast/visitor.dart » ('j') | pkg/analyzer/lib/dart/ast/visitor.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/dart/ast/ast.dart
diff --git a/pkg/analyzer/lib/dart/ast/ast.dart b/pkg/analyzer/lib/dart/ast/ast.dart
index 78b3c0668b5217a2130b381489b26bad25f2810d..c8a8cd8fd2051266722b1e10d775f95c30240478 100644
--- a/pkg/analyzer/lib/dart/ast/ast.dart
+++ b/pkg/analyzer/lib/dart/ast/ast.dart
@@ -556,7 +556,7 @@ abstract class AstNode implements SyntacticEntity {
/**
* An object that can be used to visit an AST structure.
*
- * Clients may extend or implement this class.
+ * Clients may not extend, implement or mix-in this class.
Paul Berry 2017/01/09 17:36:51 Consider adding a reference to ThrowingAstVisitor
Brian Wilkerson 2017/01/09 18:08:07 Done
*/
abstract class AstVisitor<R> {
R visitAdjacentStrings(AdjacentStrings node);
« no previous file with comments | « no previous file | pkg/analyzer/lib/dart/ast/visitor.dart » ('j') | pkg/analyzer/lib/dart/ast/visitor.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698