cairo_lang_defs/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
//! Representation and queries for definitions of module-level Cairo language elements.
//! For example, resolving identifiers in the module level is done here.

pub mod db;
pub mod diagnostic_utils;
pub mod ids;
pub mod patcher;
pub mod plugin;
pub mod plugin_utils;
#[cfg(test)]
mod test;