summaryrefslogtreecommitdiff
path: root/src/ast/nodes/ParamdefNode.java
diff options
context:
space:
mode:
authorEmanuele Grasso <96300448+L0P0P@users.noreply.github.com>2024-06-24 15:37:12 +0200
committerGitHub <noreply@github.com>2024-06-24 15:37:12 +0200
commit54b2c77e6875c1abb3d73fdfd0de924e75633087 (patch)
tree2be8d3ff7ac912c85c31637babb055efb344ae98 /src/ast/nodes/ParamdefNode.java
parent8e7089a5d6ba1f4f50a90133bb50bc5c6c554aff (diff)
Package refactoring to avoid verbose paths (#4)
Diffstat (limited to 'src/ast/nodes/ParamdefNode.java')
-rw-r--r--src/ast/nodes/ParamdefNode.java11
1 files changed, 3 insertions, 8 deletions
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);
}