blob: da72890eeb46af84e9f0722c26b3ab7c637f3014 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package ast.types;
/**
* A type for the continue and break statements.
*/
public class ReservedWordsType extends Type {
@Override
public String toPrint(String prefix) {
return prefix + "ReservedWords\n";
}
}
|