[codex] Add native C outline parser#320
Merged
justrach merged 1 commit intorelease/0.2.579from Apr 25, 2026
Merged
Conversation
Benchmark Regression ReportThreshold: 10.00%
|
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
Adds native C/C++ outline parsing to codedb's existing line parser path.
This covers:
#includeimports#definemacrosstruct,enum, anduniondeclarations.cc,.hh,.cxx, and.hxxWhy
wiki.codes production storage currently has a large C/C++ corpus with tree/search coverage but no structural symbols:
The root cause is that
detectLanguagerecognizes.cand.h, and the brace-language helpers already include C/C++, butparseOutlineWithParsernever dispatches C/C++ files to a parser.Safety
The parser is intentionally conservative. It skips prototypes, function pointer typedefs, control-flow calls, comments, strings, and macro calls instead of trying to classify ambiguous C syntax.
Validation
Closes #319.