blob: 1b5082a58897dc5e8b59322d7b344c76bde77971 (
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
|
/*
* Code formatter project
* CS 4481
*/
package submit.ast;
/**
*
* @author edwajohn
*/
public class UnaryOperator extends AbstractNode implements Expression {
private final UnaryOperatorType type;
private final Expression expression;
public UnaryOperator(String type, Expression expression) {
this.type = UnaryOperatorType.fromString(type);
this.expression = expression;
}
@Override
public void toCminus(StringBuilder builder, String prefix) {
builder.append(type);
expression.toCminus(builder, prefix);
}
}
|