| Index: lib/runtime/dart/_isolate_helper.js
|
| diff --git a/lib/runtime/dart/_isolate_helper.js b/lib/runtime/dart/_isolate_helper.js
|
| index e250752563f85390861ecf2e2e49884f2eb7970e..004df072bfe3f3d764c0b354274f9eb8b5a720d5 100644
|
| --- a/lib/runtime/dart/_isolate_helper.js
|
| +++ b/lib/runtime/dart/_isolate_helper.js
|
| @@ -1522,7 +1522,7 @@ dart_library.library('dart/_isolate_helper', null, /* Imports */[
|
| }
|
| get hashCode() {
|
| let hash = this[_id];
|
| - hash = dart.notNull(hash) >> 0 ^ (dart.notNull(hash) / 4294967296).truncate();
|
| + hash = dart.notNull(hash) >> 0 ^ (dart.notNull(hash) / 4294967296)[dartx.truncate]();
|
| hash = ~dart.notNull(hash) + (dart.notNull(hash) << 15) & 4294967295;
|
| hash = dart.notNull(hash) ^ dart.notNull(hash) >> 12;
|
| hash = dart.notNull(hash) * 5 & 4294967295;
|
|
|