(name: string)
| 21 | data?: Uint8Array; |
| 22 | |
| 23 | constructor(name: string) { |
| 24 | this.type = vscode.FileType.File; |
| 25 | this.ctime = Date.now(); |
| 26 | this.mtime = Date.now(); |
| 27 | this.size = 0; |
| 28 | this.name = name; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | export class Directory implements vscode.FileStat { |
nothing calls this directly
no outgoing calls
no test coverage detected