comparison src/luan/interp/Expressions.java @ 11:b7d7069fee58

add assignment statement and CmdLine git-svn-id: https://luan-java.googlecode.com/svn/trunk@12 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 22 Nov 2012 10:51:56 +0000
parents src/luan/interp/Values.java@7a2cdbc5767f
children 3b22ffbdb83a
comparison
equal deleted inserted replaced
10:8217d8485715 11:b7d7069fee58
1 package luan.interp;
2
3 import java.util.List;
4 import luan.LuaException;
5 import luan.LuaState;
6
7
8 public interface Expressions {
9 public List eval(LuaState lua) throws LuaException;
10 }