summaryrefslogtreecommitdiff
path: root/src/ast/nodes/ForStmtNode.java
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-06-30 13:45:57 +0200
committerGitHub <noreply@github.com>2024-06-30 13:45:57 +0200
commit8aa8b5834953cab15c0687608f4fafea2e6c61be (patch)
tree1835ae7c789136b4a6c44c12efd4247a0b96d893 /src/ast/nodes/ForStmtNode.java
parent7125bb27fedaafd5a56b5122e4251b182448ddac (diff)
parent06d7c8dee25c065b1a569337f34d3cd5e892a31d (diff)
Merge pull request #10 from boozec/check-semantics
Co-Authored-By: geno <gabriele.genovese2@studio.unibo.it> Co-Authored-By: L0P0P <grassoemanuele@live.com>
Diffstat (limited to 'src/ast/nodes/ForStmtNode.java')
-rw-r--r--src/ast/nodes/ForStmtNode.java40
1 files changed, 35 insertions, 5 deletions
diff --git a/src/ast/nodes/ForStmtNode.java b/src/ast/nodes/ForStmtNode.java
index 6d94bb2..74c6ffc 100644
--- a/src/ast/nodes/ForStmtNode.java
+++ b/src/ast/nodes/ForStmtNode.java
@@ -1,26 +1,56 @@
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 Node block;
+
+ private final Node exprList;
+ private final Node block;
public ForStmtNode(Node exprList, Node block) {
this.exprList = exprList;
this.block = block;
}
+ /**
+ * This methods check the semantics of the operation `for i in list: block`.
+ *
+ * After the `for` keyword, it's parsed as a list of expression. We verified
+ * that the last expression is always gonna be `expr comp_op expr`. We
+ * comp_op must be the `in` keyword. `i` could be of any lenght (e.g. `a, b,
+ * c`).
+ *
+ * In this function we define the following approch: we save in the
+ * SymbolTable every atom until the last expression in the expression's
+ * list. For the last element, we know that is in the `expr comp_op expr`
+ * format, so we take the left element and save it in the SymbolicTable as
+ * an atom.
+ */
@Override
public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
- ArrayList<SemanticError> errors = new ArrayList<SemanticError>();
+ ArrayList<SemanticError> errors = new ArrayList();
+
+ // Save every atom in the expression's list, except the last one
+ var l = (ExprListNode) exprList;
+ for (int i = 0; i < l.getSize() - 1; ++i) {
+ var e = (ExprNode) l.getElem(i);
+ ST.insert(e.getId(), e.typeCheck(), _nesting, "");
+ }
+
+ // Manage the last expression of expression's list
+ // Get the ExprNode
+ var left = (ExprNode) l.getElem(l.getSize() - 1);
+ // Get the left side expression of the operation, that
+ // corresponds to the first element of the expression list.
+ var atomLeft = (ExprNode) left.getExpr(0);
+ // ENHANCE: check that the comp_op is the `in` keyword
+ ST.insert(atomLeft.getId(), atomLeft.typeCheck(), _nesting, "");
errors.addAll(exprList.checkSemantics(ST, _nesting));
errors.addAll(block.checkSemantics(ST, _nesting));