* Sets the path to the wasm file * @param path path to the wasm file * @param absolute if true, path is absolute, otherwise it is relative to executing script
(path: string, absolute = false)
| 1486 | * @param absolute if true, path is absolute, otherwise it is relative to executing script |
| 1487 | */ |
| 1488 | SetWasmPath(path: string, absolute = false) { |
| 1489 | this.wasmPath = path; |
| 1490 | this.isWasmPathAbsolute = absolute; |
| 1491 | } |
| 1492 | |
| 1493 | /** |
| 1494 | * Sets the log level |
no outgoing calls
no test coverage detected