| Index: test/codegen/expect/notnull.js
|
| diff --git a/test/codegen/expect/notnull.js b/test/codegen/expect/notnull.js
|
| index 58b7ccf6108eef3f340f07d321f9c5dd0414880c..2bdaa49f4288ee4579c35c8810b4f2f01abf1891 100644
|
| --- a/test/codegen/expect/notnull.js
|
| +++ b/test/codegen/expect/notnull.js
|
| @@ -8,11 +8,11 @@ dart_library.library('notnull', null, /* Imports */[
|
| const notnull = Object.create(null);
|
| notnull.intAssignments = function() {
|
| let i = 0;
|
| - i = (i & 1) >>> 0;
|
| + i = i & 1;
|
| i = (i | 1) >>> 0;
|
| i = (i ^ 1) >>> 0;
|
| i = i[dartx['>>']](1);
|
| - i = i[dartx['<<']](1);
|
| + i = i << 1 >>> 0;
|
| i = i - 1;
|
| i = i[dartx['%']](1);
|
| i = i + 1;
|
|
|