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