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

Side by Side Diff: test/dart_codegen/expect/core/set.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/regexp.dart ('k') | test/dart_codegen/expect/core/sink.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 Set<E> extends IterableBase<E> implements EfficientLength {facto ry Set() = LinkedHashSet<E>;
3 factory Set.identity() = LinkedHashSet<E>.identity;
4 factory Set.from(Iterable elements) = LinkedHashSet<E>.from;
5 Iterator<E> get iterator;
6 bool contains(Object value);
7 bool add(E value);
8 void addAll(Iterable<E> elements);
9 bool remove(Object value);
10 E lookup(Object object);
11 void removeAll(Iterable<Object> elements);
12 void retainAll(Iterable<Object> elements);
13 void removeWhere(bool test(E element));
14 void retainWhere(bool test(E element));
15 bool containsAll(Iterable<Object> other);
16 Set<E> intersection(Set<Object> other);
17 Set<E> union(Set<E> other);
18 Set<E> difference(Set<Object> other);
19 void clear();
20 Set<E> toSet();
21 }
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/core/regexp.dart ('k') | test/dart_codegen/expect/core/sink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698