(path: string)
| 1519 | // ── Host bridge methods (called by HostBridgeLoopback via DO RPC) ── |
| 1520 | |
| 1521 | async _hostReadFile(path: string): Promise<string | null> { |
| 1522 | return (await this.workspace.readFile(path)) ?? null; |
| 1523 | } |
| 1524 | |
| 1525 | async _hostWriteFile(path: string, content: string): Promise<void> { |
| 1526 | await this.workspace.writeFile(path, content); |
no test coverage detected