From fd85e9980c0305c6dfb91aaeb199430a89163c3e Mon Sep 17 00:00:00 2001 From: geno Date: Thu, 27 Jun 2024 20:49:56 +0200 Subject: fixed comp_for and added reseved word type --- src/ast/types/ContinueBreakType.java | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/ast/types/ContinueBreakType.java (limited to 'src/ast/types/ContinueBreakType.java') 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"; - } -} -- cgit v1.2.3-71-g8e6c