Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/benchmarks/resolution/resolution-benchmark.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const THRESHOLDS: Record<string, { precision: number; recall: number }> = {
// total expected now 35. multi-class.js adds 4 class-scoped typeMap edges (#1382) → 39.
// call/apply this-rebinding adds 2 edges (runCallThis→invoker, invoker→handler) and removes
// the false-positive from handler being extracted as a callback arg of .call() (#1405) → 41.
// #1407 adds class-scope.js (bare-call guard), +1 → total 42.
// #1422 adds class-scope.js (bare-call guard), +1 → total 42.
javascript: { precision: 1.0, recall: 0.9 },
// pts-javascript: hand-authored points-to JS fixture (for-of, Set, Array.from, spread) — patterns
// too broad for the main JS fixture. Patterns split per file to prevent intra-fixture FPs.
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/call-resolver.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* method fallback must apply computeConfidence >= 0.5 to avoid false edges from
* distant files in a polyglot project.
*
* Also covers the bare-call JS/TS module-scope guard (#1407): bare `foo()` calls
* Also covers the bare-call JS/TS module-scope guard (#1422/#1424): bare `foo()` calls
* (no receiver) inside a JS/TS class method must NOT fall through to the same-class
* lookup, because bare calls in those languages are module-scoped, not class-scoped.
*/
Expand Down
Loading