aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor/src/scope
diff options
context:
space:
mode:
authorJeremy A. Kolb <[email protected]>2018-10-05 20:21:40 +0100
committerJeremy A. Kolb <[email protected]>2018-10-05 20:21:40 +0100
commit1d4c767879913271bf01912f12c7f8f176c7755d (patch)
treecfdc910fc9fc4437c52d79fc4cada661a30fd187 /crates/ra_editor/src/scope
parent91312a9ff98d1f82313c42a2387df49fbdf09ac6 (diff)
WIP: This doesn't currently work but I also don't think it's the right abstraction
Diffstat (limited to 'crates/ra_editor/src/scope')
-rw-r--r--crates/ra_editor/src/scope/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_editor/src/scope/mod.rs b/crates/ra_editor/src/scope/mod.rs
index 2f25230f8..7d6d530f7 100644
--- a/crates/ra_editor/src/scope/mod.rs
+++ b/crates/ra_editor/src/scope/mod.rs
@@ -2,7 +2,7 @@ mod fn_scope;
2mod mod_scope; 2mod mod_scope;
3 3
4pub use self::{ 4pub use self::{
5 fn_scope::FnScopes, 5 fn_scope::{FnScopes, resolve_local_name},
6 mod_scope::ModuleScope, 6 mod_scope::ModuleScope,
7}; 7};
8 8