feat: language expansion + cora callers/impact (#266, #268)#282
Merged
Conversation
#268 — Language expansion (6 → 13 languages): - Ruby (def, class, module) - PHP (function, class, interface) - Swift (func, class/struct/enum/protocol) - Scala (def, class/object/trait) - Lua (function) - Zig (fn, const) - 5 new tests (ruby, php, swift, lua, zig) #266 — cora callers / cora impact: - src/index/graph.rs — CallEdge, find_callers, find_callees, impact_analysis - SQLite call_graph table (schema v1) - CLI: cora callers <symbol> [--json] - CLI: cora impact <symbol> [--depth N] [--json] - Recursive reverse traversal with depth control - 4 unit tests (store/find/clear/impact) - Note: edge extraction wiring to index pipeline = next phase 552 tests pass, clippy clean.
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.
v0.7 Batch — Languages + Call Graph
#268 — Language Expansion (6 → 13 languages)
Added 7 new language extractors for
cora index:def(method),class,modulefunction,class,interfacefunc,class/struct/enum/protocoldef,class/object/traitfunctionfn,const5 new tests (one per language).
#266 —
cora callers/cora impactInfrastructure:
src/index/graph.rs— CallEdge, find_callers, find_callees, impact_analysiscall_graphtable (schema v1)Note: Edge extraction wiring (populating call_graph during index) is a separate phase — currently the table exists and CLI works but returns empty until call edges are extracted at index time. This is intentional: call edge extraction needs cross-file reference resolution which builds on the v0.6 index foundation.
Tests