MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / runPassOnMain

Function runPassOnMain

src/resolution/callback-synthesizer.ts:3715–3721  ·  view source on GitHub ↗
(i: number)

Source from the content-addressed store, hash-verified

3713 emit(passesDone);
3714 };
3715 const runPassOnMain = async (i: number): Promise<void> => {
3716 const pass = SYNTH_PASSES[i]!;
3717 const t0 = Date.now();
3718 passEdges[i] = await pass.run(queries, ctx, yieldToLoop, subProgress);
3719 await yieldToLoop();
3720 markPass(pass.name, Date.now() - t0);
3721 };
3722
3723 const gatedIn: number[] = [];
3724 for (let i = 0; i < SYNTH_PASSES.length; i++) {

Callers 1

synthesizeCallbackEdgesFunction · 0.85

Calls 2

markPassFunction · 0.85
runMethod · 0.65

Tested by

no test coverage detected