summaryrefslogtreecommitdiffstats
path: root/src/ast/types/ContinueBreakType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/types/ContinueBreakType.java')
-rw-r--r--src/ast/types/ContinueBreakType.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ast/types/ContinueBreakType.java b/src/ast/types/ContinueBreakType.java
deleted file mode 100644
index dfcf1f2..0000000
--- a/src/ast/types/ContinueBreakType.java
+++ /dev/null
@@ -1,10 +0,0 @@
-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";
- }
-}