diff options
author | Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> | 2024-07-06 09:47:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 09:47:25 +0200 |
commit | f0692ff5f9e39cbd1c203e9d5abebf55a3d0f6fc (patch) | |
tree | 36518af3f04a751ba5bb8158c3f005cfa3e8c7c3 /src/ast/nodes/RootNode.java | |
parent | 8aa8b5834953cab15c0687608f4fafea2e6c61be (diff) |
Fixed the print of the ast and some warnings (#19)
Co-authored-by: Santo Cariotti <santo@dcariotti.me>
Diffstat (limited to 'src/ast/nodes/RootNode.java')
-rw-r--r-- | src/ast/nodes/RootNode.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/nodes/RootNode.java b/src/ast/nodes/RootNode.java index 5bbce8c..26778f4 100644 --- a/src/ast/nodes/RootNode.java +++ b/src/ast/nodes/RootNode.java @@ -20,10 +20,10 @@ public class RootNode implements Node { @Override public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) { - ArrayList<SemanticError> errors = new ArrayList(); + ArrayList<SemanticError> errors = new ArrayList<>(); // Create a new HashMap for the current scope - HashMap<String, STentry> HM = new HashMap(); + HashMap<String, STentry> HM = new HashMap<>(); // Add the HashMap to the SymbolTable ST.add(HM); |