From 8e7089a5d6ba1f4f50a90133bb50bc5c6c554aff Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 13 Jun 2024 11:00:06 +0200 Subject: Set up visitor (#3) Co-authored-by: geno --- src/ast/nodes/FuncdefNode.java | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/ast/nodes/FuncdefNode.java (limited to 'src/ast/nodes/FuncdefNode.java') diff --git a/src/ast/nodes/FuncdefNode.java b/src/ast/nodes/FuncdefNode.java new file mode 100644 index 0000000..c48eb1c --- /dev/null +++ b/src/ast/nodes/FuncdefNode.java @@ -0,0 +1,63 @@ +package com.clp.project.ast.nodes; + +import java.util.ArrayList; + +import com.clp.project.semanticanalysis.SemanticError; +import com.clp.project.semanticanalysis.SymbolTable; +import com.clp.project.ast.types.*; +import org.antlr.v4.runtime.tree.TerminalNode; + +/** + * Node for the `funcdef` statement of the grammar. + */ +public class FuncdefNode implements Node { + private TerminalNode name; + private Node paramlist; + private Node block; + + public FuncdefNode(TerminalNode name, Node paramlist, Node block) { + this.name = name; + this.paramlist = paramlist; + this.block = block; + } + + @Override + public ArrayList checkSemantics(SymbolTable ST, int _nesting) { + ArrayList errors = new ArrayList(); + + if (paramlist != null) { + errors.addAll(paramlist.checkSemantics(ST, _nesting)); + } + + errors.addAll(block.checkSemantics(ST, _nesting)); + + return errors; + } + + // FIXME: this type must be the same of the return stmt variable + @Override + public Type typeCheck() { + return new VoidType(); + } + + // TODO: code generation for funcdef + @Override + public String codeGeneration() { + return ""; + } + + public String toPrint(String prefix) { + String str = prefix + "Funcdef(" + name + ")\n"; + + prefix += " "; + + if (paramlist != null) { + str += paramlist.toPrint(prefix); + } + + str += block.toPrint(prefix); + + return str; + } + +} -- cgit v1.2.3-18-g5258