diff options
Diffstat (limited to 'crates/ra_editor/src/scope/mod.rs')
-rw-r--r-- | crates/ra_editor/src/scope/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/ra_editor/src/scope/mod.rs b/crates/ra_editor/src/scope/mod.rs new file mode 100644 index 000000000..2f25230f8 --- /dev/null +++ b/crates/ra_editor/src/scope/mod.rs | |||
@@ -0,0 +1,8 @@ | |||
1 | mod fn_scope; | ||
2 | mod mod_scope; | ||
3 | |||
4 | pub use self::{ | ||
5 | fn_scope::FnScopes, | ||
6 | mod_scope::ModuleScope, | ||
7 | }; | ||
8 | |||