aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor/src/scope/mod.rs
blob: cc2d493926c20326d9118dcbe915189c48341b46 (plain)
1
2
3
4
5
6
7
mod fn_scope;
mod mod_scope;

pub use self::{
    fn_scope::{resolve_local_name, FnScopes},
    mod_scope::ModuleScope,
};