(file: vs.Uri, args?: string[], ...otherEvents: Array<Promise<any>>)
| 837 | } |
| 838 | |
| 839 | async function runWithoutDebugging(file: vs.Uri, args?: string[], ...otherEvents: Array<Promise<any>>): Promise<void> { |
| 840 | const fileUriWithoutQuery = file.with({ query: "" }); |
| 841 | await openFile(fileUriWithoutQuery); |
| 842 | const config = await startDebugger(dc, file, { args, noDebug: true }); |
| 843 | await waitAllThrowIfTerminates(dc, |
| 844 | dc.configurationSequence(), |
| 845 | dc.waitForEvent("terminated"), |
| 846 | ...otherEvents, |
| 847 | dc.launch(config), |
| 848 | ); |
| 849 | } |
| 850 | }); |
| 851 |
no test coverage detected