MCPcopy Index your code
hub / github.com/compiler-explorer/compiler-explorer / executeNone

Function executeNone

lib/exec.ts:654–659  ·  view source on GitHub ↗
(command: string, args: string[], options: ExecutionOptions)

Source from the content-addressed store, hash-verified

652}
653
654async function executeNone(command: string, args: string[], options: ExecutionOptions) {
655 if (needsWine(command)) {
656 return await executeWineDirect(command, args, options);
657 }
658 return await executeDirect(command, args, options);
659}
660
661type DispatchFunction = (command: string, args: string[], options: ExecutionOptions) => Promise<UnprocessedExecResult>;
662

Callers

nothing calls this directly

Calls 3

needsWineFunction · 0.85
executeWineDirectFunction · 0.85
executeDirectFunction · 0.85

Tested by

no test coverage detected