Skip to content

Commit 61a9839

Browse files
committed
chore(types): remove dead protoMethodsMs field and stale comment
The post-pass it timed (runPostNativePrototypeMethods) was deleted in b5c03a2 when func-prop extraction moved to Rust (#1432). The optional field was never set by any code path that survived the deletion. Also remove the stale reference to "prototype-methods post-pass" from the parseFilesWasmForBackfill docstring — only the this-dispatch post-pass uses symbolsOnly now. Closes #1432
1 parent 498ee21 commit 61a9839

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/domain/parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,8 +1259,8 @@ async function parseFilesWasmInline(
12591259
* `opts.symbolsOnly` skips the AST/complexity/CFG/dataflow visitors in the
12601260
* worker (and their result serialization across the thread boundary) for
12611261
* callers that only consume definitions/calls/typeMap — the native
1262-
* orchestrator's prototype-methods and this-dispatch post-passes. Callers
1263-
* that ingest the files into the DB (dropped-language backfill) must keep
1262+
* orchestrator's this-dispatch post-pass. Callers that ingest the files into
1263+
* the DB (dropped-language backfill) must keep
12641264
* the default full analysis.
12651265
*/
12661266
export async function parseFilesWasmForBackfill(

src/types.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,8 +1268,6 @@ export interface BuildResult {
12681268
edgesMs: number;
12691269
structureMs: number;
12701270
rolesMs: number;
1271-
/** Wall-clock time for the prototype-method post-pass (native path only). */
1272-
protoMethodsMs?: number;
12731271
/** Wall-clock time for the CHA expansion post-pass (native path only). */
12741272
chaMs?: number;
12751273
/** Wall-clock time for the this/super dispatch WASM post-pass (native path only). */

0 commit comments

Comments
 (0)