(file, i)
| 66 | class BigUint64Type extends Type { |
| 67 | get tsType() { return "bigint"; } |
| 68 | writeArgumentConversion(file, i) { |
| 69 | file.line(`${ this.name } arg${ i } = XS->toBigUint64(the, mxArgv(${ i }));`); |
| 70 | } |
| 71 | writeResultConversion(file) { |
| 72 | file.line("XS->fromBigUint64(the, mxResult, result);"); |
| 73 | } |