comparison 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
comparison
equal deleted inserted replaced
579:f22a09e98b04 580:1e69d9c21461
109 } 109 }
110 110
111 public static LuanTable new_property_table() { 111 public static LuanTable new_property_table() {
112 return LuanPropertyMeta.INSTANCE.newTable(); 112 return LuanPropertyMeta.INSTANCE.newTable();
113 } 113 }
114
115 public static void clear(LuanTable tbl) {
116 tbl.rawClear();
117 }
118
114 } 119 }