blob: 478c6e265bbe8933a41d3c884add2633a2a9be69 (
plain)
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
41
42
43
|
/*
* Code formatter project
* CS 4481
*/
package submit.ast;
/**
*
* @author edwajohn
*/
public class Param extends AbstractNode implements Node {
private final VarType type;
private final String id;
private final boolean array;
public Param(VarType type, String id, boolean array) {
this.type = type;
this.id = id;
this.array = array;
}
public VarType getType() {
return type;
}
public String getId() {
return id;
}
public boolean isArray() {
return array;
}
public void toCminus(StringBuilder builder, final String prefix) {
if (isArray()) {
builder.append(type).append(" ").append(id).append("[]");
} else {
builder.append(type).append(" ").append(id);
}
}
}
|