Feature/cpp parser - #13
Merged
Merged
Conversation
- Added tree-sitter queries for Go, Java, C, and C++ languages - Dart queries blocked: tree-sitter-dart 0.20 incompatible with tree-sitter 0.22 query syntax - Dart remains supported via legacy parser.rs path
…simulation - Created quad_tree.dart with Barnes-Hut approximation - Replaced O(n) repulsion with O(n log n) QuadTree lookup - Supports 100k+ nodes on desktop hardware
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.
Description
Arbor v1.0.0 CPG Engine Release - Transforms Arbor from an AST-indexer into a full Code Property Graph (CPG) Engine with control flow/data flow edges, 10 language support, scalable visualization, and production deployment capabilities.
Type of Change
Changes Made
Language Support (parser_v2.rs)
parser_v2.rs(TypeScript, Rust, Python, Go, Java, C, C++, C#)dart_language_compat()helper with safety docsCPG Edge Types (edge.rs)
EdgeKind::FlowsTofor Control Flow Graph edgesEdgeKind::DataDependencyfor Data Flow Analysis edgesVisualizer Performance (visualizer/)
quad_tree.dartfor O(n log n) force simulationgraph_painter.dartto skip off-screen nodesCLI Improvements (arbor-cli/)
--headlessflag for remote/Docker/WSL deployment (binds to0.0.0.0)Repository Hygiene
arbor-windows-v0.1.0/,arbor-windows-v0.1.1.zip,node_modules/.gitignorewith proper entries for zip, node_modules, release artifactsDependencies
bincode = "1.3"to arbor-server for future binary wire protocoltree-sitter-c-sharp = "0.21"to workspaceTesting
cargo test --all✅ 25 tests passingcargo clippy --allflutter test(if applicable)Screenshots (if applicable)
N/A - Backend and performance changes. Barnes-Hut QuadTree enables 100k+ node visualization.
Checklist