synwire-agent 0.1.0

Agent runtime implementations for synwire
Documentation
1
2
3
4
5
6
7
8
//! Dataflow retrieval: trace variable origins via tree-sitter heuristics.
//!
//! Identifies where a variable is defined and modified, using a combination
//! of tree-sitter pattern matching and simple backward-slice heuristics.

mod tracer;

pub use tracer::{DataflowHop, DataflowOrigin, DataflowTracer};