From 12280e8f01b4f761c65bad11e5316cfc4655a431 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 4 Apr 2016 08:17:04 -0400 Subject: Moved nodes to new packages --- .../main/java/bjc/dicelang/ast/IDiceASTNode.java | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 dice-lang/src/main/java/bjc/dicelang/ast/IDiceASTNode.java (limited to 'dice-lang/src/main/java/bjc/dicelang/ast/IDiceASTNode.java') diff --git a/dice-lang/src/main/java/bjc/dicelang/ast/IDiceASTNode.java b/dice-lang/src/main/java/bjc/dicelang/ast/IDiceASTNode.java deleted file mode 100644 index 38a1cc1..0000000 --- a/dice-lang/src/main/java/bjc/dicelang/ast/IDiceASTNode.java +++ /dev/null @@ -1,23 +0,0 @@ -package bjc.dicelang.ast; - -/** - * The interface for a node in a dice AST - * - * @author ben - * - */ -public interface IDiceASTNode { - /** - * Check if this node represents an operator or not - * - * @return Whether or not this node represents an operator - */ - public boolean isOperator(); - - /** - * Get the type of AST node this node is - * - * @return The type of AST node this AST node is - */ - public DiceASTType getType(); -} \ No newline at end of file -- cgit v1.2.3