comparison src/luan/interp/GetExpr.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 24fd6381caca
children 5cf15507d77e
comparison
equal deleted inserted replaced
10:8217d8485715 11:b7d7069fee58
10 10
11 GetExpr(Expr op1,Expr op2) { 11 GetExpr(Expr op1,Expr op2) {
12 super(op1,op2); 12 super(op1,op2);
13 } 13 }
14 14
15 @Override Object eval(LuaState lua) throws LuaException { 15 @Override public Object eval(LuaState lua) throws LuaException {
16 Object t = op1.eval(lua); 16 Object t = op1.eval(lua);
17 if( t instanceof LuaTable ) { 17 if( t instanceof LuaTable ) {
18 LuaTable tbl = (LuaTable)t; 18 LuaTable tbl = (LuaTable)t;
19 Object key = op2.eval(lua); 19 Object key = op2.eval(lua);
20 return tbl.get(key); 20 return tbl.get(key);