chore: regenerate typescript tree-sitter accuracy baseline (post #2303) - #2306
Merged
squid-protocol merged 2 commits intoAug 27, 2026
Merged
Conversation
CI's tree-sitter-accuracy-audit correctly caught the ground-truth drift this fix causes: real_functions 2913 -> 2915 (tree-sitter now sees the 2 abstract method signatures it was blind to before), found_functions/args_exact_match both improved, extra_functions dropped 3 -> 1 (the 2 this PR fixes; the remaining 1, `catch` in vscode/async.ts, is a separate, already-known, unrelated shape -- see the tri-comparison ledger's typescript/function/existence/agree[tree_sitter]_vs[ctags,gitgalaxy] entry). `--regenerate` refuses to write if any metric regressed -- it didn't, this run is a pure improvement. Summary table in language_standards.py refreshed to match (99.6%->99.9% found_functions, 99.9%->100.0% args_exact_match). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
squid-protocol
enabled auto-merge (squash)
August 26, 2026 22:34
squid-protocol
disabled auto-merge
August 27, 2026 01:35
Contributor
squid-protocol
deleted the
fix/typescript-abstract-method-signature-tricomparison
branch
August 27, 2026 08:24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #2303, which merged before this baseline-regen commit landed (no required status checks on this repo means auto-merge doesn't wait for every check to finish, and
tree-sitter-accuracy-auditisn't in the required list) -- main currently has theabstract_method_signatureNODE_MAPS fix without its corresponding baseline update, which would failtree-sitter-accuracy-auditon the next PR touching a related path. This closes that gap.Changes
tests/tree_sitter_accuracy_baseline_typescript.json-- regenerated via--regenerate, which refuses to write if any metric regressed (it didn't; every changed metric improved):extra_functions3->1 (the 2 false positives fix(typescript): add abstract_method_signature to tri-comparison audit's func_node_types #2303 fixed; the remaining 1,catchin vscode/async.ts, is a separate, already-known, unrelated shape),found_functions/args_exact_matchboth up,real_functions2913->2915 (tree-sitter now sees the 2 abstract method signatures it was blind to before).gitgalaxy/standards/language_standards.py-- summary table refreshed to match (auto-generated by the same--regeneraterun, verified via--summary-table).Verification
python tests/tools/tree_sitter_accuracy_audit.py --lang typescript --ci-- passes against current main.python tests/tools/tree_sitter_accuracy_audit.py --summary-table-- confirms no further diff.tests/ruff_audit.py --ci/tests/mypy_audit.py --ci-- clean.🤖 Generated with Claude Code