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

Unified Diff: lib/compiler/implementation/lib/interceptors.dart

Issue 11169004: Add "contains" method to Collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | lib/core/collection.dart » ('j') | lib/core/collection.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/lib/interceptors.dart
diff --git a/lib/compiler/implementation/lib/interceptors.dart b/lib/compiler/implementation/lib/interceptors.dart
index ffbd1d9d76b99e85cf27a00f26399fdf6debc4cf..753724873afbbfa42d969197db4ce6d09ee7f387 100644
--- a/lib/compiler/implementation/lib/interceptors.dart
+++ b/lib/compiler/implementation/lib/interceptors.dart
@@ -508,10 +508,15 @@ concat(receiver, other) {
}
contains$1(receiver, other) {
- if (receiver is !String) {
- return UNINTERCEPTED(receiver.contains(other));
+ if (receiver is String) {
+ return contains$2(receiver, other, 0);
+ } else if (isJsArray(receiver)) {
+ for (int i = 0; i < receiver.length; i++) {
+ if (other == receiver[i]) return true;
+ }
+ return false;
}
- return contains$2(receiver, other, 0);
+ return UNINTERCEPTED(receiver.contains(other));
}
contains$2(receiver, other, startIndex) {
« no previous file with comments | « no previous file | lib/core/collection.dart » ('j') | lib/core/collection.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698