Skip to content

Commit 768ca7b

Browse files
committed
Feedback from #19239. NFC
1 parent e2918ae commit 768ca7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parseTools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function splitI64(value) {
211211
//
212212
// $1$0 = ~~$d >>> 0;
213213
// $1$1 = Math.abs($d) >= 1 ? (
214-
// $d > 0 ? Math.floor(($d)/ 4294967296.0) >>> 0,
214+
// $d > 0 ? Math.floor(($d)/ 4294967296.0) >>> 0
215215
// : Math.ceil(Math.min(-4294967296.0, $d - $1$0)/ 4294967296.0)
216216
// ) : 0;
217217
//
@@ -364,7 +364,7 @@ function makeSetValue(ptr, pos, value, type, noNeedFirst, ignore, align, sep) {
364364
assert(typeof noNeedFirst === 'undefined', 'makeSetValue no longer supports noNeedFirst parameter');
365365
assert(typeof sep === 'undefined', 'makeSetValue no longer supports sep parameter');
366366
if (type == 'i64' && !WASM_BIGINT) {
367-
// If we lack either BigInt we must fall back to an reading a pair of I32
367+
// If we lack BigInt support we must fall back to an reading a pair of I32
368368
// values.
369369
return '(tempI64 = [' + splitI64(value) + '], ' +
370370
makeSetValue(ptr, pos, 'tempI64[0]', 'i32') + ',' +

0 commit comments

Comments
 (0)