diff 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
line wrap: on
line diff
--- a/core/src/luan/modules/TableLuan.java	Wed Apr 29 11:24:00 2015 -0600
+++ b/core/src/luan/modules/TableLuan.java	Wed Apr 29 13:01:00 2015 -0600
@@ -11,6 +11,7 @@
 import luan.LuanException;
 import luan.LuanRuntimeException;
 import luan.LuanMethod;
+import luan.LuanPropertyMeta;
 
 
 public final class TableLuan {
@@ -114,4 +115,7 @@
 		return tbl.cloneTable();
 	}
 
+	public static LuanTable new_property_table() {
+		return LuanPropertyMeta.newInstance().newTable();
+	}
 }