diff options
author | geno <gabriele.genovese2@studio.unibo.it> | 2024-06-30 13:36:37 +0200 |
---|---|---|
committer | geno <gabriele.genovese2@studio.unibo.it> | 2024-06-30 13:36:37 +0200 |
commit | afff6a80cd58f7787efa1398f7c8cbdce8989323 (patch) | |
tree | e6021201d6e7049da640687c7ce61c898aaea4d8 /src/ast/nodes/TestlistCompNode.java | |
parent | aaa97e2e41c0aa17a6f99099dd39bb73a935fe02 (diff) |
fixed warnings, better formatting, final added where possible
Diffstat (limited to 'src/ast/nodes/TestlistCompNode.java')
-rw-r--r-- | src/ast/nodes/TestlistCompNode.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/nodes/TestlistCompNode.java b/src/ast/nodes/TestlistCompNode.java index cba056c..32049f5 100644 --- a/src/ast/nodes/TestlistCompNode.java +++ b/src/ast/nodes/TestlistCompNode.java @@ -10,8 +10,8 @@ import semanticanalysis.SymbolTable; */ public class TestlistCompNode implements Node { - private ArrayList<Node> exprs; - private CompForNode comp; + private final ArrayList<Node> exprs; + private final CompForNode comp; public TestlistCompNode(ArrayList<Node> exprs, Node comp) { this.exprs = exprs; |