()
| 25 | private filePath: string | null = null; |
| 26 | |
| 27 | private getPath(): string { |
| 28 | if (!this.filePath) { |
| 29 | this.filePath = path.join(Storage.getGlobalGeminiDir(), STATE_FILENAME); |
| 30 | } |
| 31 | return this.filePath; |
| 32 | } |
| 33 | |
| 34 | private load(): PersistentStateData { |
| 35 | if (this.cache) { |
no test coverage detected