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(); }