1 2 3 4 5 6 7 8 9 10
//! # ink! Analyzer
//! A library for semantic analysis of [ink!](https://use.ink/) smart contract code.
//!
//! **NOTE:** This project is still work in progress
//! and implements very limited functionality at this time.
pub mod analysis;
pub mod ir;
pub use crate::{analysis::diagnostics::Diagnostic, analysis::Analysis};