Mercurial Hosting > luan
comparison src/luan/interp/Settable.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 | 09d41f7490a8 |
| children | 64ecb7a3aad7 |
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 Settable { | 6 interface Settable { |
| 8 public void set(LuaState lua,Object value) throws LuaException; | 7 public void set(LuaStateImpl lua,Object value) throws LuaException; |
| 9 } | 8 } |
