/** * Callee-ignore tables & receiver predicates — extracted from `call-graph.ts` * (change: modularize-call-graph-builder; analyzer: StableCallGraphBarrel). * * Pure, dependency-free data + string predicates that the language extractors use * to decide whether a call target is language noise to drop (`isIgnoredCallee`) and * whether a member-call receiver denotes the enclosing object/class so it bypasses * the ignore filter (`isSelfReceiver`). The `*_IGNORED` tables stay private to this * module; only the two predicates are imported back by the extractors. These were * file-internal (never on `call-graph.ts`'s public surface), so they are not * re-exported — the public import surface is unchanged. */ /** * Returns true if the name should be skipped as a call target. * Pass the source `language` so only that language's builtins are ignored; * omit it (or pass an unmapped language) to fall back to the cross-language * union (legacy behavior). */ export declare function isIgnoredCallee(name: string, language?: string): boolean; export declare function isSelfReceiver(receiver: string | undefined): boolean; //# sourceMappingURL=call-graph-builtins.d.ts.map