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 ec5ff32 commit 9709afbCopy full SHA for 9709afb
src/vm/js/nqp-runtime/runtime.js
@@ -563,7 +563,7 @@ exports.arg_i64 = function(ctx, contedArg) {
563
564
exports.arg_u64 = function(ctx, contedArg) {
565
if (contedArg instanceof NativeIntArg) {
566
- return BigInt.asUintN(64, contedArg.value);
+ return BigInt.asUintN(64, BigInt(contedArg.value));
567
} else if (contedArg instanceof NativeUIntArg) {
568
return BigInt(contedArg.value);
569
} else if (contedArg instanceof NativeNumArg) {
0 commit comments