comparison src/luan/interp/Expr.java @ 31:5cf15507d77e

separate interpreter from interface git-svn-id: https://luan-java.googlecode.com/svn/trunk@32 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 13 Dec 2012 02:50:04 +0000
parents b7d7069fee58
children e3624b7cd603
comparison
equal deleted inserted replaced
30:8d8f4f5caef4 31:5cf15507d77e
1 package luan.interp; 1 package luan.interp;
2 2
3 import luan.LuaState;
4 import luan.LuaException; 3 import luan.LuaException;
5 4
6 5
7 interface Expr { 6 interface Expr {
8 public Object eval(LuaState lua) throws LuaException; 7 public Object eval(LuaStateImpl lua) throws LuaException;
9 } 8 }