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

Unified Diff: test/dart_codegen/expect/core/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
« no previous file with comments | « test/dart_codegen/expect/core/list.dart ('k') | test/dart_codegen/expect/core/null.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/core/map.dart
diff --git a/test/dart_codegen/expect/core/map.dart b/test/dart_codegen/expect/core/map.dart
deleted file mode 100644
index e55372f9afdba2235cb63fc5b342fb76a303c376..0000000000000000000000000000000000000000
--- a/test/dart_codegen/expect/core/map.dart
+++ /dev/null
@@ -1,23 +0,0 @@
-part of dart.core;
- abstract class Map<K, V> {factory Map() = LinkedHashMap<K, V>;
- factory Map.from(Map other) = LinkedHashMap<K, V>.from;
- factory Map.identity() = LinkedHashMap<K, V>.identity;
- factory Map.fromIterable(Iterable iterable, {
- K key(element), V value(element)}
-) = LinkedHashMap<K, V>.fromIterable;
- factory Map.fromIterables(Iterable<K> keys, Iterable<V> values) = LinkedHashMap<K, V>.fromIterables;
- bool containsValue(Object value);
- bool containsKey(Object key);
- V operator [](Object key);
- void operator []=(K key, V value);
- V putIfAbsent(K key, V ifAbsent());
- void addAll(Map<K, V> other);
- V remove(Object key);
- void clear();
- void forEach(void f(K key, V value));
- Iterable<K> get keys;
- Iterable<V> get values;
- int get length;
- bool get isEmpty;
- bool get isNotEmpty;
-}
« no previous file with comments | « test/dart_codegen/expect/core/list.dart ('k') | test/dart_codegen/expect/core/null.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698