We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4d654 commit 90732f8Copy full SHA for 90732f8
src/parseTools.js
@@ -223,6 +223,7 @@ function splitI64(value) {
223
// For negatives, we need to ensure a -1 if the value is overall negative,
224
// even if not significant negative component
225
226
+ assert(!WASM_BIGINT, 'splitI64 should not be used when WASM_BIGINT is enabled');
227
const low = value + '>>>0';
228
const high = makeInlineCalculation(
229
asmCoercion('Math.abs(VALUE)', 'double') + ' >= ' + asmEnsureFloat('1', 'double') + ' ? ' +
0 commit comments