summaryrefslogtreecommitdiff
path: root/src/ast/nodes/ExprNode.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/ExprNode.java
parenteb7fb04d2dfadd004fa86f28da42681e0038df06 (diff)
Fix `for` loop for 1+ params
Diffstat (limited to 'src/ast/nodes/ExprNode.java')
-rw-r--r--src/ast/nodes/ExprNode.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/ast/nodes/ExprNode.java b/src/ast/nodes/ExprNode.java
index 62b3a94..781cc76 100644
--- a/src/ast/nodes/ExprNode.java
+++ b/src/ast/nodes/ExprNode.java
@@ -26,6 +26,14 @@ public class ExprNode implements Node {
this.trailers = trailers;
}
+ public Node getExpr(int i) {
+ if (i >= this.exprs.size()) {
+ return null;
+ }
+
+ return this.exprs.get(i);
+ }
+
public String getId() {
if (atom != null) {
return ((AtomNode) this.atom).getId();
@@ -67,7 +75,8 @@ public class ExprNode implements Node {
int argNumber = trailer.getArgumentNumber();
if (paramNumber != argNumber) {
- errors.add(new SemanticError(funName + "() takes " + String.valueOf(paramNumber) + " positional arguments but " + String.valueOf(argNumber) + " were given."));
+ errors.add(new SemanticError(funName + "() takes " + String.valueOf(paramNumber)
+ + " positional arguments but " + String.valueOf(argNumber) + " were given."));
}
}
}