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

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