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

Unified Diff: lib/visitor.dart

Issue 2502343002: Store named parameters in sorted lists instead of using maps. (Closed)
Patch Set: Remove duplicates from named parameter lists to recover from erroneous inputs Created 4 years, 1 month 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 | « lib/type_propagation/builder.dart ('k') | test/type_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/visitor.dart
diff --git a/lib/visitor.dart b/lib/visitor.dart
index 4b0fa070ffeaba2812b4a38a7cb1aa87bba70e87..c48f0d425a7165975a4480578058dd134c21b8e2 100644
--- a/lib/visitor.dart
+++ b/lib/visitor.dart
@@ -266,6 +266,7 @@ class Visitor<R> extends TreeVisitor<R>
R visitName(Name node) => defaultNode(node);
R visitSupertype(Supertype node) => defaultNode(node);
+ R visitNamedType(NamedType node) => defaultNode(node);
}
class RecursiveVisitor<R> extends Visitor<R> {
« no previous file with comments | « lib/type_propagation/builder.dart ('k') | test/type_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698