comparison src/luan/interp/SetLocalVar.java @ 48:64ecb7a3aad7

rename Lua to Luan git-svn-id: https://luan-java.googlecode.com/svn/trunk@49 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 28 Dec 2012 03:29:12 +0000
parents c3eab5a3ce3c
children 8ede219cd111
comparison
equal deleted inserted replaced
47:659c7139e903 48:64ecb7a3aad7
6 6
7 SetLocalVar(int index) { 7 SetLocalVar(int index) {
8 this.index = index; 8 this.index = index;
9 } 9 }
10 10
11 @Override public void set(LuaStateImpl lua,Object value) { 11 @Override public void set(LuanStateImpl lua,Object value) {
12 lua.stackSet( index, value ); 12 lua.stackSet( index, value );
13 } 13 }
14 } 14 }