blob: 439bdacf6dfafa85b9914111e77adf1167c1bee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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();
}
|