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

Unified Diff: test/dart_codegen/expect/collection/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, 8 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/collection/set.dart
diff --git a/test/dart_codegen/expect/collection/set.dart b/test/dart_codegen/expect/collection/set.dart
index 5b3b16c48ac4576e29b6514f3fa1c1f4e248bdca..fce67582bc0ce7567c1cb011abd25057a0c0240a 100644
--- a/test/dart_codegen/expect/collection/set.dart
+++ b/test/dart_codegen/expect/collection/set.dart
@@ -1,7 +1,7 @@
part of dart.collection;
abstract class SetMixin<E> implements Set<E> {bool add(E element);
bool contains(Object element);
- E lookup(E element);
+ E lookup(Object element);
bool remove(Object element);
Iterator<E> get iterator;
Set<E> toSet();

Powered by Google App Engine
This is Rietveld 408576698