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

Unified Diff: test/codegen/expect/collection/collection.js

Issue 955513007: merge class extensions from patch files (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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 | « test/codegen/expect/async/async.js ('k') | test/codegen/expect/core/core.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/collection/collection.js
diff --git a/test/codegen/expect/collection/collection.js b/test/codegen/expect/collection/collection.js
index 1c19d720bcaf7bcfd80898a99ce17d1080bbd932..7286f23665d9eef1cc464f14801fe6b38d0cc894 100644
--- a/test/codegen/expect/collection/collection.js
+++ b/test/codegen/expect/collection/collection.js
@@ -2272,11 +2272,19 @@ var collection;
Maps._fillMapWithIterables(map, keys, values);
return map;
}
+ LinkedHashMap$_literal(keyValuePairs) {
+ return dart.as(dart.dinvokef(/* Unimplemented unknown name */fillLiteralMap, keyValuePairs, new _LinkedHashMap()), LinkedHashMap$(K, V));
+ }
+ LinkedHashMap$_empty() {
+ return new _LinkedHashMap();
+ }
}
dart.defineNamedConstructor(LinkedHashMap, 'identity');
dart.defineNamedConstructor(LinkedHashMap, 'from');
dart.defineNamedConstructor(LinkedHashMap, 'fromIterable');
dart.defineNamedConstructor(LinkedHashMap, 'fromIterables');
+ dart.defineNamedConstructor(LinkedHashMap, '_literal');
+ dart.defineNamedConstructor(LinkedHashMap, '_empty');
return LinkedHashMap;
});
let LinkedHashMap = LinkedHashMap$(dynamic, dynamic);
« no previous file with comments | « test/codegen/expect/async/async.js ('k') | test/codegen/expect/core/core.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698