Add TODO for symbol resolver

This commit is contained in:
greg 2019-11-06 18:41:37 -08:00
parent d20acf7166
commit 4c718ed977
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ pub struct ScopeResolver<'a> {
}
impl<'a> ASTVisitor for ScopeResolver<'a> {
//TODO need to un-insert these - maybe need to rethink visitor
fn import(&mut self, import_spec: &ImportSpecifier) {
let ref symbol_table = self.symbol_table_handle.borrow();
let ImportSpecifier { ref path_components, ref imported_names, .. } = &import_spec;