(stack: string)
| 169 | } |
| 170 | |
| 171 | export async function findAndOpenFirstUserFile(stack: string) { |
| 172 | const entry = await resolveStackTrace(stack, true); |
| 173 | if (entry) { |
| 174 | await openFileInEditor(entry); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | function getExtension(file: string): string | null { |
| 179 | const parts = file.split('.'); |
no test coverage detected