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

Side by Side 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, 6 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 part of dart.core;
2 abstract class Map<K, V> {factory Map() = LinkedHashMap<K, V>;
3 factory Map.from(Map other) = LinkedHashMap<K, V>.from;
4 factory Map.identity() = LinkedHashMap<K, V>.identity;
5 factory Map.fromIterable(Iterable iterable, {
6 K key(element), V value(element)}
7 ) = LinkedHashMap<K, V>.fromIterable;
8 factory Map.fromIterables(Iterable<K> keys, Iterable<V> values) = LinkedHashMap <K, V>.fromIterables;
9 bool containsValue(Object value);
10 bool containsKey(Object key);
11 V operator [](Object key);
12 void operator []=(K key, V value);
13 V putIfAbsent(K key, V ifAbsent());
14 void addAll(Map<K, V> other);
15 V remove(Object key);
16 void clear();
17 void forEach(void f(K key, V value));
18 Iterable<K> get keys;
19 Iterable<V> get values;
20 int get length;
21 bool get isEmpty;
22 bool get isNotEmpty;
23 }
OLDNEW
« 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