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

Unified Diff: lib/runtime/dart/collection.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/async.js ('k') | lib/runtime/dart/convert.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/collection.js
diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js
index cd4195087fa54cfee3d1eed2b267a0251a0ad779..f6cb64deccddd09f1365765bfef365ed9b4b40b6 100644
--- a/lib/runtime/dart/collection.js
+++ b/lib/runtime/dart/collection.js
@@ -6,7 +6,6 @@ var collection;
class UnmodifiableListView extends _internal.UnmodifiableListBase$(E) {
UnmodifiableListView(source) {
this[_source] = source;
- super.UnmodifiableListBase();
}
get [core.$length]() {
return this[_source][core.$length];
@@ -4236,7 +4235,6 @@ var collection;
this[_nums] = null;
this[_rest] = null;
this[_elements] = null;
- super._HashSetBase();
}
[_newSet]() {
return new (_HashSet$(E))();
@@ -4570,7 +4568,6 @@ var collection;
this[_first] = null;
this[_last] = null;
this[_modifications] = 0;
- super._HashSetBase();
}
[_newSet]() {
return new (_LinkedHashSet$(E))();
« no previous file with comments | « lib/runtime/dart/async.js ('k') | lib/runtime/dart/convert.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698