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

Unified Diff: test/dart_codegen/expect/core/set.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/set.dart
diff --git a/test/dart_codegen/expect/core/set.dart b/test/dart_codegen/expect/core/set.dart
index 5d060dc1bdfbc24e6c7113889241902f41bb58c7..cd5d2f3321bd5151f39e353de432d7d1e1dfecd8 100644
--- a/test/dart_codegen/expect/core/set.dart
+++ b/test/dart_codegen/expect/core/set.dart
@@ -1,23 +1,21 @@
part of dart.core;
-
-abstract class Set<E> extends IterableBase<E> implements EfficientLength {
- factory Set() = LinkedHashSet<E>;
- factory Set.identity() = LinkedHashSet<E>.identity;
- factory Set.from(Iterable elements) = LinkedHashSet<E>.from;
- Iterator<E> get iterator;
- bool contains(Object value);
- bool add(E value);
- void addAll(Iterable<E> elements);
- bool remove(Object value);
- E lookup(Object object);
- void removeAll(Iterable<Object> elements);
- void retainAll(Iterable<Object> elements);
- void removeWhere(bool test(E element));
- void retainWhere(bool test(E element));
- bool containsAll(Iterable<Object> other);
- Set<E> intersection(Set<Object> other);
- Set<E> union(Set<E> other);
- Set<E> difference(Set<E> other);
- void clear();
- Set<E> toSet();
+ abstract class Set<E> extends IterableBase<E> implements EfficientLength {factory Set() = LinkedHashSet<E>;
+ factory Set.identity() = LinkedHashSet<E>.identity;
+ factory Set.from(Iterable elements) = LinkedHashSet<E>.from;
+ Iterator<E> get iterator;
+ bool contains(Object value);
+ bool add(E value);
+ void addAll(Iterable<E> elements);
+ bool remove(Object value);
+ E lookup(Object object);
+ void removeAll(Iterable<Object> elements);
+ void retainAll(Iterable<Object> elements);
+ void removeWhere(bool test(E element));
+ void retainWhere(bool test(E element));
+ bool containsAll(Iterable<Object> other);
+ Set<E> intersection(Set<Object> other);
+ Set<E> union(Set<E> other);
+ Set<E> difference(Set<E> other);
+ void clear();
+ Set<E> toSet();
}

Powered by Google App Engine
This is Rietveld 408576698