summaryrefslogtreecommitdiff
path: root/src/ast/nodes/ExprListNode.java
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-06-27 19:47:05 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-06-27 19:47:05 +0200
commit4898724edf343650ffb80792caf9e242e5843059 (patch)
tree79664d0e6d0a4c2c721db4c068e52961412c5941 /src/ast/nodes/ExprListNode.java
parenteb7fb04d2dfadd004fa86f28da42681e0038df06 (diff)
Fix `for` loop for 1+ params
Diffstat (limited to 'src/ast/nodes/ExprListNode.java')
-rw-r--r--src/ast/nodes/ExprListNode.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ast/nodes/ExprListNode.java b/src/ast/nodes/ExprListNode.java
index c1a2ebc..acdf679 100644
--- a/src/ast/nodes/ExprListNode.java
+++ b/src/ast/nodes/ExprListNode.java
@@ -12,16 +12,16 @@ public class ExprListNode implements Node {
private final ArrayList<Node> exprs;
- public ExprListNode(ArrayList<Node> _exprs) {
- this.exprs = _exprs;
+ public ExprListNode(ArrayList<Node> exprs) {
+ this.exprs = exprs;
}
@Override
public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
ArrayList<SemanticError> errors = new ArrayList();
- for (var param : exprs) {
- errors.addAll(param.checkSemantics(ST, _nesting));
+ for (var expr : exprs) {
+ errors.addAll(expr.checkSemantics(ST, _nesting));
}
return errors;