view src/luan/interp/Expr.java @ 19:a7c13c6017f7

add GenericForStmt git-svn-id: https://luan-java.googlecode.com/svn/trunk@20 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Sun, 02 Dec 2012 10:08:24 +0000
parents b7d7069fee58
children 5cf15507d77e
line wrap: on
line source

package luan.interp;

import luan.LuaState;
import luan.LuaException;


interface Expr {
	public Object eval(LuaState lua) throws LuaException;
}