@@ -44,7 +44,7 @@ function unsafe_pop(q) {
4444}
4545
4646function rotl32 ( x , n ) {
47- return x << n | x >>> ( 32 - n | 0 ) | 0 ;
47+ return ( x << n ) | ( x >>> ( 32 - n | 0 ) ) | 0 ;
4848}
4949
5050function hash_mix_int ( h , d ) {
@@ -58,26 +58,26 @@ function hash_mix_int(h, d) {
5858}
5959
6060function hash_final_mix ( h ) {
61- let h$1 = h ^ h >>> 16 ;
61+ let h$1 = h ^ ( h >>> 16 ) ;
6262 h$1 = Math . imul ( h$1 , - 2048144789 ) ;
63- h$1 = h$1 ^ h$1 >>> 13 ;
63+ h$1 = h$1 ^ ( h$1 >>> 13 ) ;
6464 h$1 = Math . imul ( h$1 , - 1028477387 ) ;
65- return h$1 ^ h$1 >>> 16 ;
65+ return h$1 ^ ( h$1 >>> 16 ) ;
6666}
6767
6868function hash_mix_string ( h , s ) {
6969 let len = s . length ;
7070 let block = ( len / 4 | 0 ) - 1 | 0 ;
7171 let hash = h ;
7272 for ( let i = 0 ; i <= block ; ++ i ) {
73- let j = i << 2 ;
74- let w = s . charCodeAt ( j ) | s . charCodeAt ( j + 1 | 0 ) << 8 | s . charCodeAt ( j + 2 | 0 ) << 16 | s . charCodeAt ( j + 3 | 0 ) << 24 ;
73+ let j = ( i << 2 ) ;
74+ let w = s . charCodeAt ( j ) | ( s . charCodeAt ( j + 1 | 0 ) << 8 ) | ( s . charCodeAt ( j + 2 | 0 ) << 16 ) | ( s . charCodeAt ( j + 3 | 0 ) << 24 ) ;
7575 hash = hash_mix_int ( hash , w ) ;
7676 }
7777 let modulo = len & 3 ;
7878 if ( modulo !== 0 ) {
79- let w$1 = modulo === 3 ? s . charCodeAt ( len - 1 | 0 ) << 16 | s . charCodeAt ( len - 2 | 0 ) << 8 | s . charCodeAt ( len - 3 | 0 ) : (
80- modulo === 2 ? s . charCodeAt ( len - 1 | 0 ) << 8 | s . charCodeAt ( len - 2 | 0 ) : s . charCodeAt ( len - 1 | 0 )
79+ let w$1 = modulo === 3 ? ( s . charCodeAt ( len - 1 | 0 ) << 16 ) | ( s . charCodeAt ( len - 2 | 0 ) << 8 ) | s . charCodeAt ( len - 3 | 0 ) : (
80+ modulo === 2 ? ( s . charCodeAt ( len - 1 | 0 ) << 8 ) | s . charCodeAt ( len - 2 | 0 ) : s . charCodeAt ( len - 1 | 0 )
8181 ) ;
8282 hash = hash_mix_int ( hash , w$1 ) ;
8383 }
@@ -117,7 +117,7 @@ function hash(count, _limit, seed, obj) {
117117 let size = obj$1 . length | 0 ;
118118 if ( size !== 0 ) {
119119 let obj_tag = obj$1 . TAG ;
120- let tag = size << 10 | obj_tag ;
120+ let tag = ( size << 10 ) | obj_tag ;
121121 s = hash_mix_int ( s , tag ) ;
122122 let v = size - 1 | 0 ;
123123 let block = v < num ? v : num ;
@@ -133,7 +133,7 @@ function hash(count, _limit, seed, obj) {
133133 }
134134 return size
135135 } ) ( obj$1 , v => push_back ( queue , v ) ) ;
136- s = hash_mix_int ( s , size$1 << 10 | 0 ) ;
136+ s = hash_mix_int ( s , ( size$1 << 10 ) | 0 ) ;
137137 }
138138 }
139139
0 commit comments