shieldcontract 0.2.0

Advanced security analysis for blockchain platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{Finding, Result};

#[derive(Debug, Clone)]
pub struct DeterminismAnalyzer;

impl DeterminismAnalyzer {
    pub fn new() -> Self {
        Self
    }

    pub fn analyze(&self, _content: &str, _tree: &tree_sitter::Tree) -> Result<Vec<Finding>> {
        Ok(vec![])
    }
}