(absolutePath)
| 22001 | return file |
| 22002 | } |
| 22003 | async getFile(absolutePath) { |
| 22004 | if (this._fusedFiles[absolutePath]) return this._fusedFiles[absolutePath] |
| 22005 | const file = new ScrollFile(undefined, absolutePath, this) |
| 22006 | this._fusedFiles[absolutePath] = file |
| 22007 | return file |
| 22008 | } |
| 22009 | getFusedFilesInFolderIfCached(folderPath, requester) { |
| 22010 | folderPath = Utils.ensureFolderEndsInSlash(folderPath) |
| 22011 | const hit = this._folderCache[folderPath] |