MCPcopy Create free account
hub / github.com/Dart-Code/Dart-Code / runWithoutDebugging

Function runWithoutDebugging

src/test/dart_debug/dart_test.test.ts:839–849  ·  view source on GitHub ↗
(file: vs.Uri, args?: string[], ...otherEvents: Array<Promise<any>>)

Source from the content-addressed store, hash-verified

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

Callers 1

dart_test.test.tsFile · 0.85

Calls 6

openFileFunction · 0.90
startDebuggerFunction · 0.90
waitAllThrowIfTerminatesFunction · 0.90
configurationSequenceMethod · 0.80
waitForEventMethod · 0.80
launchMethod · 0.45

Tested by

no test coverage detected