comparison core/src/luan/modules/TableLuan.java @ 407:7fd9f1b7b878

replace LuanPropertyTable with LuanPropertyMeta
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Apr 2015 13:01:00 -0600
parents 899253043270
children 23b99a5039b5
comparison
equal deleted inserted replaced
406:9321a33b9b1c 407:7fd9f1b7b878
9 import luan.LuanTable; 9 import luan.LuanTable;
10 import luan.LuanFunction; 10 import luan.LuanFunction;
11 import luan.LuanException; 11 import luan.LuanException;
12 import luan.LuanRuntimeException; 12 import luan.LuanRuntimeException;
13 import luan.LuanMethod; 13 import luan.LuanMethod;
14 import luan.LuanPropertyMeta;
14 15
15 16
16 public final class TableLuan { 17 public final class TableLuan {
17 18
18 public static String concat(LuanState luan,LuanTable list,String sep,Integer i,Integer j) throws LuanException { 19 public static String concat(LuanState luan,LuanTable list,String sep,Integer i,Integer j) throws LuanException {
112 113
113 public static LuanTable clone(LuanTable tbl) { 114 public static LuanTable clone(LuanTable tbl) {
114 return tbl.cloneTable(); 115 return tbl.cloneTable();
115 } 116 }
116 117
118 public static LuanTable new_property_table() {
119 return LuanPropertyMeta.newInstance().newTable();
120 }
117 } 121 }