diff options
author | geno <gabriele.genovese2@studio.unibo.it> | 2024-06-27 18:20:34 +0200 |
---|---|---|
committer | geno <gabriele.genovese2@studio.unibo.it> | 2024-06-27 18:20:34 +0200 |
commit | eb7fb04d2dfadd004fa86f28da42681e0038df06 (patch) | |
tree | 1bba3962300083017673c5d689a5d2bf1652109d /src/ast/nodes/ForStmtNode.java | |
parent | 095a2cb4e9abb88805aac3271874bc512108ff96 (diff) |
left, right = 1, 2 assignment covered
sfaccimm ho fatto refactoring dell exprlist
Diffstat (limited to 'src/ast/nodes/ForStmtNode.java')
-rw-r--r-- | src/ast/nodes/ForStmtNode.java | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/ast/nodes/ForStmtNode.java b/src/ast/nodes/ForStmtNode.java index 28fe783..610d0a0 100644 --- a/src/ast/nodes/ForStmtNode.java +++ b/src/ast/nodes/ForStmtNode.java @@ -1,20 +1,20 @@ package ast.nodes; +import ast.types.*; import java.util.ArrayList; - import semanticanalysis.SemanticError; import semanticanalysis.SymbolTable; -import ast.types.*; /** * Node for the `for_stmt` statement of the grammar. */ public class ForStmtNode implements Node { - private Node exprList; + + private ExprListNode exprList; private Node block; public ForStmtNode(Node exprList, Node block) { - this.exprList = exprList; + this.exprList = (ExprListNode) exprList; this.block = block; } @@ -22,9 +22,7 @@ public class ForStmtNode implements Node { public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) { ArrayList<SemanticError> errors = new ArrayList<SemanticError>(); - ExprNode expr = (ExprNode) exprList; - - ST.insert(expr.getId(), expr.typeCheck(), _nesting, ""); + // ST.insert(expr.getId(), expr.typeCheck(s), _nesting, ""); errors.addAll(exprList.checkSemantics(ST, _nesting)); errors.addAll(block.checkSemantics(ST, _nesting)); |