(x)
| 1048 | // code (since pointers are presented as Number in JS and BigInt in wasm we need |
| 1049 | // this conversion before passing them). |
| 1050 | function to64(x) { |
| 1051 | if (!MEMORY64) return x; |
| 1052 | return castToBigInt(x); |
| 1053 | } |
| 1054 | |
| 1055 | function asyncIf(condition) { |
| 1056 | return condition ? 'async ' : ''; |
no test coverage detected