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