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/DottedNameNode.java | 51 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/ast/nodes/DottedNameNode.java (limited to 'src/ast/nodes/DottedNameNode.java') diff --git a/src/ast/nodes/DottedNameNode.java b/src/ast/nodes/DottedNameNode.java new file mode 100644 index 0000000..342950a --- /dev/null +++ b/src/ast/nodes/DottedNameNode.java @@ -0,0 +1,51 @@ +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 `dooted_name` statement of the grammar. + */ +public class DottedNameNode implements Node { + protected ArrayList names; + + public DottedNameNode(ArrayList names) { + this.names = names; + } + + @Override + public ArrayList checkSemantics(SymbolTable ST, int _nesting) { + ArrayList errors = new ArrayList(); + + return errors; + } + + @Override + public Type typeCheck() { + return new VoidType(); + } + + // NOTE: we do not provide code generation for this node in the same way + // we do not want to do this for the import stm. + @Override + public String codeGeneration() { + return ""; + } + + @Override + public String toPrint(String prefix) { + String str = prefix + "DottedName\n"; + + prefix += " "; + for (var name : names) { + str += prefix + name.toString() + "\n"; + } + + return str; + } + +} -- cgit v1.2.3-18-g5258