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 10c4f27 commit cf7c44bCopy full SHA for cf7c44b
src/lpython/semantics/python_ast_to_asr.cpp
@@ -4512,6 +4512,10 @@ class SymbolTableVisitor : public CommonVisitor<SymbolTableVisitor> {
4512
}
4513
4514
4515
+ void visit_AugAssign(const AST::AugAssign_t &/*x*/) {
4516
+ // We skip this in the SymbolTable visitor, but visit it in the BodyVisitor
4517
+ }
4518
+
4519
void visit_AnnAssign(const AST::AnnAssign_t &/*x*/) {
4520
// We skip this in the SymbolTable visitor, but visit it in the BodyVisitor
4521
0 commit comments