From 54b2c77e6875c1abb3d73fdfd0de924e75633087 Mon Sep 17 00:00:00 2001 From: Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> Date: Mon, 24 Jun 2024 15:37:12 +0200 Subject: Package refactoring to avoid verbose paths (#4) --- src/ast/nodes/ParamdefNode.java | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'src/ast/nodes/ParamdefNode.java') diff --git a/src/ast/nodes/ParamdefNode.java b/src/ast/nodes/ParamdefNode.java index d8e04f7..481282e 100644 --- a/src/ast/nodes/ParamdefNode.java +++ b/src/ast/nodes/ParamdefNode.java @@ -1,17 +1,12 @@ -package com.clp.project.ast.nodes; +package 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 ast.types.*; /** * Node for the `paramdef` statement of the grammar. Extends the `AtomNode` * class. */ -public class ParamdefNode extends AtomNode implements Node { +public class ParamdefNode extends AtomNode { public ParamdefNode(String val) { super(val); } -- cgit v1.2.3-18-g5258