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

Unified Diff: test/dart_codegen/expect/core/map.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (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
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
index a456c829cce86f5117d757f9e5b02136f85ffe30..e55372f9afdba2235cb63fc5b342fb76a303c376 100644
--- a/test/dart_codegen/expect/core/map.dart
+++ b/test/dart_codegen/expect/core/map.dart
@@ -1,25 +1,23 @@
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;
+ 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;
}

Powered by Google App Engine
This is Rietveld 408576698