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 bc0a6fc commit 107f180Copy full SHA for 107f180
tools/shared.py
@@ -1226,7 +1226,7 @@ def make_invoke(sig, named=True):
1226
if Settings.WASM_BIGINT or 'j' not in sig:
1227
new_args = ['a' + str(i) for i in range(1, len(legal_sig))]
1228
for i in range(len(sig) - 1):
1229
- if sig[i+1] == 'j':
+ if sig[i + 1] == 'j':
1230
new_args[i] = 'BigInt(%s)' % new_args[i]
1231
new_args = ','.join(new_args)
1232
body = '%sdynCallDirect(index, %s);' % (ret, new_args)
0 commit comments