rapx 0.7.31

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
16
pub mod alias;
pub mod api_dependency;
pub mod callgraph;
pub mod dataflow;
pub mod owned_heap;
pub mod path;
pub mod points_to;
pub mod range;
pub mod safety_flow;
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);
}