rapx 0.7.29

A static analysis platform for Rust program analysis and verification
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod alias_analysis;
pub mod api_dependency;
pub mod callgraph;
pub mod dataflow;
pub mod ownedheap_analysis;
pub mod path_analysis;
pub mod range_analysis;
pub mod safetyflow_analysis;
pub mod scan;
pub mod ssa_transform;

/// This is a general trait designed for all program analysis features.
pub trait Analysis {
    fn run(&mut self);
}