(...arguments_)
| 247 | accumulator.fs = accumulator.fs || {}; |
| 248 | const reference = csoundApi[apiName]; |
| 249 | const callback = async (...arguments_) => |
| 250 | makeSingleThreadCallback(this.wasm, csoundApi[apiName]).apply({}, arguments_); |
| 251 | callback.toString = reference.toString; |
| 252 | accumulator.fs[apiName] = callback; |
| 253 | } else { |
nothing calls this directly
no test coverage detected