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

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

Issue 1131143002: Angular workarounds (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase on latest Created 5 years, 7 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: lib/runtime/dart/_internal.js
diff --git a/lib/runtime/dart/_internal.js b/lib/runtime/dart/_internal.js
index a2c2025d75fc58b9d4216f86fcf681963da914cd..c733a6b203fc364b9d35e609aef8c57197445aed 100644
--- a/lib/runtime/dart/_internal.js
+++ b/lib/runtime/dart/_internal.js
@@ -526,9 +526,9 @@ var _js_primitives = dart.lazyImport(_js_primitives);
let ExpandIterator$ = dart.generic(function(S, T) {
class ExpandIterator extends core.Object {
ExpandIterator(iterator, f) {
+ this[_currentExpansion] = dart.const(new (EmptyIterator$(T))());
this[_iterator] = iterator;
this[_f] = f;
- this[_currentExpansion] = dart.const(new (EmptyIterator$(T))());
this[_current] = null;
}
[_nextExpansion]() {}

Powered by Google App Engine
This is Rietveld 408576698