Skip to content

Commit 4a83651

Browse files
committed
Rename "main" to "names_outer"
1 parent f664c82 commit 4a83651

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

rusty_linter/src/names/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
mod compacts;
22
mod implicit_vars;
3-
mod main;
43
mod name_info;
54
mod names_inner;
5+
mod names_outer;
66
mod traits;
77

88
pub use implicit_vars::ImplicitVars;
9-
pub use main::Names;
9+
pub use names_outer::Names;
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ pub struct Names {
3838

3939
/// Stores the data relevant to one level only (i.e. global symbols, or a FUNCTION, or a SUB).
4040
/// Collects constant and variable names in [NamesInner] and implicit variables in [ImplicitVars].
41-
/// TODO merge [ImplicitVars] into [NamesInner]
42-
/// TODO use bi_tuple macro
4341
#[derive(Default)]
4442
struct NamesOneLevel {
4543
names: NamesInner,

0 commit comments

Comments
 (0)