We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34771ec commit d92662dCopy full SHA for d92662d
src/lpython/semantics/python_ast_to_asr.cpp
@@ -4056,8 +4056,6 @@ class SymbolTableVisitor : public CommonVisitor<SymbolTableVisitor> {
4056
// Implement visit_Global for Symbol Table visitor.
4057
void visit_Global(const AST::Global_t &/*x*/) {}
4058
4059
-
4060
4061
void visit_FunctionDef(const AST::FunctionDef_t &x) {
4062
dependencies.clear(al);
4063
SymbolTable *parent_scope = current_scope;
@@ -4830,7 +4828,6 @@ class BodyVisitor : public CommonVisitor<BodyVisitor> {
4830
4828
tmp = nullptr;
4831
4829
}
4832
4833
4834
void visit_Import(const AST::Import_t &x) {
4835
// All the modules are imported in the SymbolTable visitor
4836
for (size_t i = 0; i < x.n_names; i++) {
0 commit comments