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

Unified Diff: lib/runtime/dart/_internal.js

Issue 1486473002: Convert dart_utils.js to input_sdk/lib/_internal/utils.dart (#310) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 1 month 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: lib/runtime/dart/_internal.js
diff --git a/lib/runtime/dart/_internal.js b/lib/runtime/dart/_internal.js
index 7d8b6b504e45bd8356ad240d4ae0891c61bcffc9..5d0fb66387e36116a7d389bc0a0055229437ecb1 100644
--- a/lib/runtime/dart/_internal.js
+++ b/lib/runtime/dart/_internal.js
@@ -620,7 +620,7 @@ dart_library.library('dart/_internal', null, /* Imports */[
super.IterableBase();
}
get iterator() {
- return new (ExpandIterator$(S, T))(this[_iterable][dartx.iterator], dart.as(this[_f], __CastType0));
+ return new (ExpandIterator$(S, T))(this[_iterable][dartx.iterator], dart.as(this[_f], __CastType0$(S, T)));
vsm 2015/11/30 16:50:06 Do you know what change triggered this? The new v
Jennifer Messerly 2015/11/30 18:54:11 Just a guess: I changed Analyzer to use FunctionEl
}
}
dart.setSignature(ExpandIterable, {
@@ -1317,7 +1317,7 @@ dart_library.library('dart/_internal', null, /* Imports */[
}
where(iterable, f) {
dart.as(f, dart.functionType(core.bool, [dart.dynamic]));
- return new (WhereIterable$(T))(dart.as(iterable, core.Iterable$(T)), dart.as(f, __CastType2));
+ return new (WhereIterable$(T))(dart.as(iterable, core.Iterable$(T)), dart.as(f, __CastType2$(T)));
}
static map(iterable, f) {
dart.as(f, dart.functionType(dart.dynamic, [dart.dynamic]));

Powered by Google App Engine
This is Rietveld 408576698