()
| 1152 | * detectRunningIDEsCached() calls. |
| 1153 | */ |
| 1154 | export async function detectRunningIDEs(): Promise<IdeType[]> { |
| 1155 | const result = await detectRunningIDEsImpl() |
| 1156 | cachedRunningIDEs = result |
| 1157 | return result |
| 1158 | } |
| 1159 | |
| 1160 | /** |
| 1161 | * Returns cached IDE detection results, or performs detection if cache is empty. |
no test coverage detected