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

Unified Diff: test/generated_sdk/lib/collection/linked_hash_map.dart

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/generated_sdk/lib/async/schedule_microtask.dart ('k') | test/generated_sdk/lib/core/expando.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/generated_sdk/lib/collection/linked_hash_map.dart
diff --git a/test/generated_sdk/lib/collection/linked_hash_map.dart b/test/generated_sdk/lib/collection/linked_hash_map.dart
index ecf78432e1ca951f562ef5744cbe125d17bf5831..35d011043dfa69ce44d9fdbed7c4041ba1466423 100644
--- a/test/generated_sdk/lib/collection/linked_hash_map.dart
+++ b/test/generated_sdk/lib/collection/linked_hash_map.dart
@@ -136,4 +136,14 @@ abstract class LinkedHashMap<K, V> implements HashMap<K, V> {
Maps._fillMapWithIterables(map, keys, values);
return map;
}
+
+ @NoInline()
+ factory LinkedHashMap._literal(List keyValuePairs) {
+ return fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>());
+ }
+
+ @NoThrows() @NoInline()
+ factory LinkedHashMap._empty() {
+ return new _LinkedHashMap<K, V>();
+ }
}
« no previous file with comments | « test/generated_sdk/lib/async/schedule_microtask.dart ('k') | test/generated_sdk/lib/core/expando.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698