diff options
author | Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> | 2024-07-14 18:48:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-14 18:48:09 +0200 |
commit | ce49d20a5fe3726e1800bc495a25c7617212abf4 (patch) | |
tree | 5a1a79efa79e7bf6dcf3d3151aec2edf6a47b3e7 /src/ParseAll.java | |
parent | 57599a42b863cc48050c137de2ec108aa1d59a44 (diff) |
Reaching definition analysis (#17)
Co-authored-by: Santo Cariotti <santo@dcariotti.me>
Co-authored-by: geno <gabriele.genovese2@studio.unibo.it>
Co-authored-by: geno <gabrigeno@gmail.com>
Diffstat (limited to 'src/ParseAll.java')
-rw-r--r-- | src/ParseAll.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ParseAll.java b/src/ParseAll.java index 06b99ad..091a2f4 100644 --- a/src/ParseAll.java +++ b/src/ParseAll.java @@ -35,7 +35,7 @@ public class ParseAll { Python3Parser.RootContext tree = parser.root(); String treeStr = tree.toStringTree(); - Python3VisitorImpl visitor = new Python3VisitorImpl(); + Python3VisitorImpl visitor = new Python3VisitorImpl(tokenStream, false); SymbolTable ST = new SymbolTable(); Node ast = visitor.visit(tree); ArrayList<SemanticError> errorsWithDup = ast.checkSemantics(ST, 0, null); |