summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/dicelang/ast/IResult.java
blob: 9a3f32582e32097345e669901e147f23fba28229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package bjc.dicelang.ast;

/**
 * Represents a result from an expression evaluation
 * 
 * @author ben
 *
 */
public interface IResult {
	/**
	 * Get the type of this result
	 * 
	 * @return The type of this result
	 */
	public ResultType getType();
}