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

Side by Side Diff: test/dart_codegen/expect/collection/linked_hash_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
OLDNEW
(Empty)
1 part of dart.collection;
2 abstract class LinkedHashSet<E> implements HashSet<E> {external factory LinkedH ashSet({
3 bool equals(E e1, E e2), int hashCode(E e), bool isValidKey(potentialKey)}
4 );
5 external factory LinkedHashSet.identity();
6 factory LinkedHashSet.from(Iterable<E> elements) {
7 LinkedHashSet<E> result = new LinkedHashSet<E>();
8 for (final E element in elements) {
9 result.add(element);
10 }
11 return result;
12 }
13 void forEach(void action(E element));
14 Iterator<E> get iterator;
15 }
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/collection/linked_hash_map.dart ('k') | test/dart_codegen/expect/collection/linked_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698