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