diff options
Diffstat (limited to 'src/ast/nodes/ParamdefNode.java')
-rw-r--r-- | src/ast/nodes/ParamdefNode.java | 11 |
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); } |