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

Unified Diff: compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart

Issue 9188028: Add map() method to List subtype in test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart
diff --git a/compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart b/compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart
index e64575821b69b89c42266f75c23676bb73805f73..40e6510db2c37d24293eb017d3490acbf33a44d0 100644
--- a/compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart
+++ b/compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart
@@ -22,6 +22,7 @@ class MyList<T> implements List<T> {
T removeLast() { return null; }
T last() { return null; }
void forEach(void f(T)) {}
+ List map(f(T)) { return null; }
Collection<T> filter(bool f(T)) { return null; }
bool every(bool f(T)) { return null; }
bool some(bool f(T)) { return null; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698