File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ mod iterable;
21
21
mod keyword;
22
22
mod lambda;
23
23
mod maps;
24
- mod meta;
25
24
mod namespace;
26
25
mod persistent_vector;
27
26
mod reader;
Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ impl Namespace {
163
163
. replace_with ( |refers| refers. add_referred_namespaces ( namespaces) ) ;
164
164
}
165
165
166
- //
167
166
fn contains_key ( & self , sym : & Symbol ) -> bool {
168
167
self . mappings . borrow_mut ( ) . contains_key ( sym)
169
168
}
@@ -295,6 +294,7 @@ impl Namespaces {
295
294
}
296
295
}
297
296
}
297
+
298
298
// TODO write this similar to try_get, and rewrite try_get in terms of this
299
299
pub fn get_var ( & self , namespace_sym : & Symbol , sym : & Symbol ) -> Rc < Value > {
300
300
// When storing / retrieving from namespaces, we want
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ use crate::persistent_list_map::PersistentListMap;
2
2
use crate :: traits;
3
3
use std:: fmt;
4
4
use std:: hash:: { Hash , Hasher } ;
5
- use crate :: meta;
6
5
7
6
#[ derive( Eq , Clone , Debug ) ]
8
7
pub struct Symbol {
@@ -108,7 +107,6 @@ mod tests {
108
107
mod symbol_tests {
109
108
use crate :: keyword:: Keyword ;
110
109
use crate :: maps:: MapEntry ;
111
- use crate :: meta;
112
110
use crate :: persistent_list_map:: ToPersistentListMapIter ;
113
111
use crate :: persistent_list_map:: { PersistentListMap , PersistentListMapIter } ;
114
112
use crate :: symbol:: Symbol ;
You can’t perform that action at this time.
0 commit comments