summaryrefslogtreecommitdiff
path: root/src/ast/nodes/CompoundNode.java
diff options
context:
space:
mode:
authorgeno <gabriele.genovese2@studio.unibo.it>2024-06-26 14:53:05 +0200
committergeno <gabriele.genovese2@studio.unibo.it>2024-06-26 14:53:05 +0200
commit06671f5aed68753435a762bc3be43e83094156d1 (patch)
tree56f251596cf57f6f13a7921e7dad6e795989329d /src/ast/nodes/CompoundNode.java
parente09358f3648445bbf9747f40497af6221d933a99 (diff)
exercise 1 completed
1.b now works 1.c implened error for "function takes N positional arguments but M were given"
Diffstat (limited to 'src/ast/nodes/CompoundNode.java')
-rw-r--r--src/ast/nodes/CompoundNode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/nodes/CompoundNode.java b/src/ast/nodes/CompoundNode.java
index e64be9e..d21c2c7 100644
--- a/src/ast/nodes/CompoundNode.java
+++ b/src/ast/nodes/CompoundNode.java
@@ -1,15 +1,15 @@
package ast.nodes;
+import ast.types.*;
import java.util.ArrayList;
-
import semanticanalysis.SemanticError;
import semanticanalysis.SymbolTable;
-import ast.types.*;
/**
* Node for the `compound_node` statement of the grammar.
*/
public class CompoundNode implements Node {
+
private Node ifNode;
private Node funcDef;
private Node forStmt;