ownsight-driver 0.1.0

Rust compiler integration and analysis driver for Ownsight
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod simple_analyzer;

pub use simple_analyzer::*;

use ownsight_core::*;
use anyhow::Result;

pub trait OwnershipAnalyzer {
    fn analyze(&mut self, source: &str, filename: &str) -> Result<ProgramAnalysis>;
}