(path: string)
| 124 | } |
| 125 | |
| 126 | stat(path: string): Promise<WorkspaceStatResult> { |
| 127 | return withSpan(this.#ws.observer, "workspace.fs.stat", { "workspace.fs.path": path }, () => |
| 128 | this.#ws.fs.stat(path), |
| 129 | ); |
| 130 | } |
| 131 | |
| 132 | async statOrNull(path: string): Promise<WorkspaceStatResult | null> { |
| 133 | return withSpan( |