(file, i)
| 136 | file.write(`*arg${ i }`); |
| 137 | } |
| 138 | writeArgumentConversion(file, i) { |
| 139 | file.line(`char** arg${ i } = XS->toStringHandle(the, mxArgv(${ i }));`); |
| 140 | } |
| 141 | writeResultConversion(file) { |
| 142 | if (this.name.startsWith("const ")) { |
| 143 | file.line("XS->fromStringX(the, mxResult, (txString)result);"); |