pub struct MoveAnalyzer;Expand description
Analyzer for Move programs (Aptos/Sui).
Performs static analysis on Move code to extract:
- Module names and entry points
- Function signatures and visibility
- Resource types and access patterns
- Mutation and read operations
Implementations§
Source§impl MoveAnalyzer
impl MoveAnalyzer
Sourcepub fn analyze_with_context(&self, path: &Path) -> Result<AnalysisContext>
pub fn analyze_with_context(&self, path: &Path) -> Result<AnalysisContext>
Analyze a Move program and return context with warnings.
Trait Implementations§
Source§impl ChainAnalyzer for MoveAnalyzer
impl ChainAnalyzer for MoveAnalyzer
Auto Trait Implementations§
impl Freeze for MoveAnalyzer
impl RefUnwindSafe for MoveAnalyzer
impl Send for MoveAnalyzer
impl Sync for MoveAnalyzer
impl Unpin for MoveAnalyzer
impl UnsafeUnpin for MoveAnalyzer
impl UnwindSafe for MoveAnalyzer
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