()
| 293 | } |
| 294 | |
| 295 | export function clearTabCache() { |
| 296 | const wcVals = Array.from(wcvCache.values()); |
| 297 | for (let i = 0; i < wcVals.length; i++) { |
| 298 | const tabView = wcVals[i]; |
| 299 | tryEvictEntry(tabView.waveTabId); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | // returns [tabview, initialized] |
| 304 | export async function getOrCreateWebViewForTab(waveWindowId: string, tabId: string): Promise<[WaveTabView, boolean]> { |
no test coverage detected