pub struct SemanticAnalyzer { /* private fields */ }Expand description
The main semantic analysis orchestrator.
Implementations§
Source§impl SemanticAnalyzer
impl SemanticAnalyzer
Sourcepub fn analyze(
&self,
raw_units: Vec<RawCodeUnit>,
options: &AnalyzeOptions,
) -> AcbResult<CodeGraph>
pub fn analyze( &self, raw_units: Vec<RawCodeUnit>, options: &AnalyzeOptions, ) -> AcbResult<CodeGraph>
Analyze raw units and produce a CodeGraph.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SemanticAnalyzer
impl !RefUnwindSafe for SemanticAnalyzer
impl Send for SemanticAnalyzer
impl Sync for SemanticAnalyzer
impl Unpin for SemanticAnalyzer
impl UnsafeUnpin for SemanticAnalyzer
impl !UnwindSafe for SemanticAnalyzer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more