comparison src/luan/lib/TableLib.java @ 142:05f8c21160ef

minor git-svn-id: https://luan-java.googlecode.com/svn/trunk@143 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 13 Jun 2014 17:05:31 +0000
parents 3119326260ea
children
comparison
equal deleted inserted replaced
141:c2ee8a717b73 142:05f8c21160ef
13 import luan.LuanException; 13 import luan.LuanException;
14 import luan.LuanRuntimeException; 14 import luan.LuanRuntimeException;
15 15
16 16
17 public final class TableLib { 17 public final class TableLib {
18
19 public static final String NAME = "Table";
20 18
21 public static final LuanFunction LOADER = new LuanFunction() { 19 public static final LuanFunction LOADER = new LuanFunction() {
22 @Override public Object call(LuanState luan,Object[] args) { 20 @Override public Object call(LuanState luan,Object[] args) {
23 LuanTable module = new LuanTable(); 21 LuanTable module = new LuanTable();
24 try { 22 try {