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

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