circomspect-program-structure 2.1.4

Support crate for the Circomspect static analyzer
Documentation
use super::ast::*;

impl AST {
    pub fn get_includes(&self) -> &Vec<Include> {
        &self.includes
    }

    pub fn get_version(&self) -> &Option<Version> {
        &self.compiler_version
    }

    pub fn get_definitions(&self) -> &Vec<Definition> {
        &self.definitions
    }
    pub fn decompose(
        self,
    ) -> (Meta, Option<Version>, Vec<Include>, Vec<Definition>, Option<MainComponent>) {
        (self.meta, self.compiler_version, self.includes, self.definitions, self.main_component)
    }
}