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

Unified Diff: test/dart_codegen/expect/collection/linked_hash_map.dart

Issue 1148283010: Remove dart backend (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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: test/dart_codegen/expect/collection/linked_hash_map.dart
diff --git a/test/dart_codegen/expect/collection/linked_hash_map.dart b/test/dart_codegen/expect/collection/linked_hash_map.dart
deleted file mode 100644
index b6e8d5dae47683045dc0db5161a6bb84c7e3f2fb..0000000000000000000000000000000000000000
--- a/test/dart_codegen/expect/collection/linked_hash_map.dart
+++ /dev/null
@@ -1,26 +0,0 @@
-part of dart.collection;
- abstract class LinkedHashMap<K, V> implements HashMap<K, V> {external factory LinkedHashMap({
- bool equals(K key1, K key2), int hashCode(K key), bool isValidKey(potentialKey)}
-);
- external factory LinkedHashMap.identity();
- factory LinkedHashMap.from(Map other) {
- LinkedHashMap<K, V> result = new LinkedHashMap<K, V>();
- other.forEach((k, v) {
- result[DEVC$RT.cast(k, dynamic, K, "CompositeCast", """line 74, column 35 of dart:collection/linked_hash_map.dart: """, k is K, false)] = DEVC$RT.cast(v, dynamic, V, "CompositeCast", """line 74, column 40 of dart:collection/linked_hash_map.dart: """, v is V, false);
- }
- );
- return result;
- }
- factory LinkedHashMap.fromIterable(Iterable iterable, {
- K key(element), V value(element)}
-) {
- LinkedHashMap<K, V> map = new LinkedHashMap<K, V>();
- Maps._fillMapWithMappedIterable(map, iterable, key, value);
- return map;
- }
- factory LinkedHashMap.fromIterables(Iterable<K> keys, Iterable<V> values) {
- LinkedHashMap<K, V> map = new LinkedHashMap<K, V>();
- Maps._fillMapWithIterables(map, keys, values);
- return map;
- }
-}
« no previous file with comments | « test/dart_codegen/expect/collection/iterator.dart ('k') | test/dart_codegen/expect/collection/linked_hash_set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698