diff core/src/luan/modules/TableLuan.java @ 580:1e69d9c21461

add Table.clear(); add Http.response.reset(); fix http/run;
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 21 Jul 2015 14:56:41 -0600
parents 60c549d43988
children e3d19d525915
line wrap: on
line diff
--- a/core/src/luan/modules/TableLuan.java	Thu Jul 16 15:14:31 2015 -0600
+++ b/core/src/luan/modules/TableLuan.java	Tue Jul 21 14:56:41 2015 -0600
@@ -111,4 +111,9 @@
 	public static LuanTable new_property_table() {
 		return LuanPropertyMeta.INSTANCE.newTable();
 	}
+
+	public static void clear(LuanTable tbl) {
+		tbl.rawClear();
+	}
+
 }