get rid of completed todo

This commit is contained in:
greg 2018-09-22 00:26:38 -07:00
parent f67793308e
commit 5d4505241a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ impl<'a, T, V> ScopeStack<'a, T, V> where T: Hash + Eq {
(Some(value), _) => Some(value),
}
}
//TODO rename new_scope
pub fn new_scope(&'a self, name: Option<String>) -> ScopeStack<'a, T, V> where T: Hash + Eq {
ScopeStack {
parent: Some(self),