diff --git a/src/lpython/semantics/python_ast_to_asr.cpp b/src/lpython/semantics/python_ast_to_asr.cpp index dc41debfa4..0050cd0918 100644 --- a/src/lpython/semantics/python_ast_to_asr.cpp +++ b/src/lpython/semantics/python_ast_to_asr.cpp @@ -3335,15 +3335,6 @@ class CommonVisitor : public AST::BaseVisitor { } } else { current_scope = al.make_new(parent_scope); - // if ( parent ) { - // ASR::Struct_t* base_st = ASR::down_cast(parent); - // SymbolTable* base_scope = base_st->m_symtab; - // for (auto i : base_scope->scope) { - // std::string name = i.first; - // ASR::symbol_t* sym = i.second; - // current_scope->add_symbol(name,sym); - // } - // } Vec member_names; Vec member_fn_names; Vec member_init;