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

Side by Side Diff: test/dart_codegen/expect/core/set.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix 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 unified diff | Download patch
OLDNEW
1 part of dart.core; 1 part of dart.core;
2 abstract class Set<E> extends IterableBase<E> implements EfficientLength {facto ry Set() = LinkedHashSet<E>; 2 abstract class Set<E> extends IterableBase<E> implements EfficientLength {facto ry Set() = LinkedHashSet<E>;
3 factory Set.identity() = LinkedHashSet<E>.identity; 3 factory Set.identity() = LinkedHashSet<E>.identity;
4 factory Set.from(Iterable elements) = LinkedHashSet<E>.from; 4 factory Set.from(Iterable elements) = LinkedHashSet<E>.from;
5 Iterator<E> get iterator; 5 Iterator<E> get iterator;
6 bool contains(Object value); 6 bool contains(Object value);
7 bool add(E value); 7 bool add(E value);
8 void addAll(Iterable<E> elements); 8 void addAll(Iterable<E> elements);
9 bool remove(Object value); 9 bool remove(Object value);
10 E lookup(Object object); 10 E lookup(Object object);
11 void removeAll(Iterable<Object> elements); 11 void removeAll(Iterable<Object> elements);
12 void retainAll(Iterable<Object> elements); 12 void retainAll(Iterable<Object> elements);
13 void removeWhere(bool test(E element)); 13 void removeWhere(bool test(E element));
14 void retainWhere(bool test(E element)); 14 void retainWhere(bool test(E element));
15 bool containsAll(Iterable<Object> other); 15 bool containsAll(Iterable<Object> other);
16 Set<E> intersection(Set<Object> other); 16 Set<E> intersection(Set<Object> other);
17 Set<E> union(Set<E> other); 17 Set<E> union(Set<E> other);
18 Set<E> difference(Set<E> other); 18 Set<E> difference(Set<Object> other);
19 void clear(); 19 void clear();
20 Set<E> toSet(); 20 Set<E> toSet();
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698