-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionCallNode.java
More file actions
40 lines (31 loc) · 881 Bytes
/
FunctionCallNode.java
File metadata and controls
40 lines (31 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package icsi311;
import java.util.LinkedList;
import java.util.Optional;
public class FunctionCallNode extends StatementNode{
private String Name;
LinkedList<Node> parameters = new LinkedList<Node>();
public FunctionCallNode(String n, LinkedList<Node> p){
Name = n;
parameters = p;
}
public FunctionCallNode(String n){
Name = n;
}
public FunctionCallNode(String n, Optional<Node> p){
Name = n;
if(!p.isEmpty())
parameters.add(p.get());
}
public String toString(){
return Name + "Function Call: (" + betterParams(parameters.toString()) + ")";
}
public String betterParams(String s){
return s.substring(1,s.length()-1);
}
public String getName(){
return Name;
}
public LinkedList<Node> getParameters(){
return parameters;
}
}