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

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

Issue 1095683005: fix super ctor logic (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merge 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
« no previous file with comments | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_js_helper.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_internal.js
diff --git a/lib/runtime/dart/_internal.js b/lib/runtime/dart/_internal.js
index 701d5a45c622231fc554edf473d2e64fdccba315..de9093de4fd0c310de4c38c72086811b8f44009b 100644
--- a/lib/runtime/dart/_internal.js
+++ b/lib/runtime/dart/_internal.js
@@ -409,7 +409,6 @@ var _internal;
this[_iterator] = iterator;
this[_f] = f;
this[_current] = null;
- super.Iterator();
}
moveNext() {
if (this[_iterator].moveNext()) {
@@ -469,7 +468,6 @@ var _internal;
WhereIterator(iterator, f) {
this[_iterator] = iterator;
this[_f] = f;
- super.Iterator();
}
moveNext() {
while (this[_iterator].moveNext()) {
@@ -586,7 +584,6 @@ var _internal;
TakeIterator(iterator, remaining) {
this[_iterator] = iterator;
this[_remaining] = remaining;
- super.Iterator();
dart.assert(typeof this[_remaining] == 'number' && dart.notNull(this[_remaining]) >= 0);
}
moveNext() {
@@ -627,7 +624,6 @@ var _internal;
this[_iterator] = iterator;
this[_f] = f;
this[_isFinished] = false;
- super.Iterator();
}
moveNext() {
if (this[_isFinished])
@@ -701,7 +697,6 @@ var _internal;
SkipIterator(iterator, skipCount) {
this[_iterator] = iterator;
this[_skipCount] = skipCount;
- super.Iterator();
dart.assert(typeof this[_skipCount] == 'number' && dart.notNull(this[_skipCount]) >= 0);
}
moveNext() {
@@ -738,7 +733,6 @@ var _internal;
this[_iterator] = iterator;
this[_f] = f;
this[_hasSkipped] = false;
- super.Iterator();
}
moveNext() {
if (!dart.notNull(this[_hasSkipped])) {
« no previous file with comments | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_js_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698