Skip to content

Commit c41a4a5

Browse files
working on rotate and reverse
1 parent 68961c0 commit c41a4a5

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

compiler/prelude/types.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,6 @@ var $newType = (size, kind, string, named, pkg, exported, constructor) => {
102102

103103
case $kindInt64:
104104
typ = function (high, low) {
105-
//this.$high = (low >= 0 && low <= 4294967295)
106-
// ? this.$high = high >> 0
107-
// : (high + Math.floor(Math.ceil(low) / 4294967296)) >> 0;
108105
this.$high = (high + Math.floor(Math.ceil(low) / 4294967296)) >> 0;
109106
this.$low = low >>> 0;
110107
this.$val = this;
@@ -114,9 +111,6 @@ var $newType = (size, kind, string, named, pkg, exported, constructor) => {
114111

115112
case $kindUint64:
116113
typ = function (high, low) {
117-
//this.$high = (low >= 0 && low <= 4294967295)
118-
// ? high >>> 0
119-
// : (high + Math.floor(Math.ceil(low) / 4294967296)) >>> 0;
120114
this.$high = (high + Math.floor(Math.ceil(low) / 4294967296)) >>> 0;
121115
this.$low = low >>> 0;
122116
this.$val = this;

0 commit comments

Comments
 (0)