ParameterNode
This commit is contained in:
parent
44545f7ba6
commit
91a3c3042d
11
src/main/java/ast/ParameterNode.java
Normal file
11
src/main/java/ast/ParameterNode.java
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package ast;
|
||||||
|
|
||||||
|
public class ParameterNode extends ASTNode {
|
||||||
|
public TypeNode type;
|
||||||
|
public String identifier;
|
||||||
|
|
||||||
|
public ParameterNode(TypeNode type, String identifier) {
|
||||||
|
this.type = type;
|
||||||
|
this.identifier = identifier;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user