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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/ast.dart

Issue 14173003: Remove Collection, Collections and clean up List/Set/Queue implementations of retain/remove. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: pkg/analyzer_experimental/lib/src/generated/ast.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/ast.dart b/pkg/analyzer_experimental/lib/src/generated/ast.dart
index cc22cd483b1d9c3b938f228099d14f9edd0aca1b..96e7662430ab399a751d38c19de8b651a533cf2c 100644
--- a/pkg/analyzer_experimental/lib/src/generated/ast.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/ast.dart
@@ -13045,7 +13045,7 @@ class NodeList<E extends ASTNode> extends ListWrapper<E> {
owner.becomeParentOf(node);
elements.add(node);
}
- bool addAll(Collection<E> nodes) {
+ bool addAll(Iterable<E> nodes) {
if (nodes != null) {
for (E node in nodes) {
add(node);
@@ -13081,4 +13081,4 @@ class NodeList<E extends ASTNode> extends ListWrapper<E> {
ASTNode getOwner() {
return owner;
}
-}
+}

Powered by Google App Engine
This is Rietveld 408576698