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

Unified Diff: pkg/analyzer/test/generated/all_the_rest.dart

Issue 677303002: Remove unnecessary List creation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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/test/generated/all_the_rest.dart
diff --git a/pkg/analyzer/test/generated/all_the_rest.dart b/pkg/analyzer/test/generated/all_the_rest.dart
index fb99dca35116de1fbb31f5624b13421e0371eee3..d72f3505549db149a59f346b722fadaf7e240e9f 100644
--- a/pkg/analyzer/test/generated/all_the_rest.dart
+++ b/pkg/analyzer/test/generated/all_the_rest.dart
@@ -10941,7 +10941,7 @@ class XmlValidator extends ht.RecursiveXmlVisitor<Object> {
// Flatten the hierarchy into expected order in which the tags are visited
List<XmlValidator_Tag> expected = new List<XmlValidator_Tag>();
_expectTags(expected, expectedTags);
- this._expectedTagsInOrderVisited = new List.from(expected);
+ this._expectedTagsInOrderVisited = expected;
}
@override
Object visitHtmlUnit(ht.HtmlUnit node) {

Powered by Google App Engine
This is Rietveld 408576698