(filePath: string)
| 415 | } |
| 416 | |
| 417 | _assertFile(filePath: string) { |
| 418 | const entry = this._assertExists(filePath); |
| 419 | |
| 420 | return this._assertFileEntry(entry); |
| 421 | } |
| 422 | |
| 423 | _remove(entry: FSEntry) { |
| 424 | const parentEntry = this._assertDir(path.dirname(entry.path)); |
no test coverage detected