summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/dicelang/v1/ast/IResult.java
blob: 093cfd00bfd1623f97963b575ea1d7ed17924605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package bjc.dicelang.v1.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();
}