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

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

Issue 1122883002: Do not suppress implicit constructors that need a super call. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: 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 a54af9a2a5921508dd11435d66c65d38748b9e73..ffc7b5403b4f3887215f70f7cd566defc4822070 100644
--- a/lib/runtime/dart/collection.js
+++ b/lib/runtime/dart/collection.js
@@ -3823,6 +3823,9 @@ var collection;
let _HashMap = _HashMap$();
let _IdentityHashMap$ = dart.generic(function(K, V) {
class _IdentityHashMap extends _HashMap$(K, V) {
+ _IdentityHashMap() {
+ super._HashMap();
+ }
[_computeHashCode](key) {
return core.identityHashCode(key) & 0x3ffffff;
}
@@ -4244,6 +4247,9 @@ var collection;
let _LinkedHashMap = _LinkedHashMap$();
let _LinkedIdentityHashMap$ = dart.generic(function(K, V) {
class _LinkedIdentityHashMap extends _LinkedHashMap$(K, V) {
+ _LinkedIdentityHashMap() {
+ super._LinkedHashMap();
+ }
[_computeHashCode](key) {
return core.identityHashCode(key) & 0x3ffffff;
}
@@ -4621,6 +4627,9 @@ var collection;
let _HashSet = _HashSet$();
let _IdentityHashSet$ = dart.generic(function(E) {
class _IdentityHashSet extends _HashSet$(E) {
+ _IdentityHashSet() {
+ super._HashSet();
+ }
[_newSet]() {
return new (_IdentityHashSet$(E))();
}
@@ -5001,6 +5010,9 @@ var collection;
let _LinkedHashSet = _LinkedHashSet$();
let _LinkedIdentityHashSet$ = dart.generic(function(E) {
class _LinkedIdentityHashSet extends _LinkedHashSet$(E) {
+ _LinkedIdentityHashSet() {
+ super._LinkedHashSet();
+ }
[_newSet]() {
return new (_LinkedIdentityHashSet$(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