comparison core/src/luan/modules/Table.luan @ 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 22bfd8a2eaee
children ca169567ce07
comparison
equal deleted inserted replaced
579:f22a09e98b04 580:1e69d9c21461
1 java() 1 java()
2 local TableLuan = require "java:luan.modules.TableLuan" 2 local TableLuan = require "java:luan.modules.TableLuan"
3 3
4 local M = {} 4 local M = {}
5 5
6 M.clear = TableLuan.clear
6 M.concat = TableLuan.concat 7 M.concat = TableLuan.concat
7 M.copy = TableLuan.copy 8 M.copy = TableLuan.copy
8 M.insert = TableLuan.insert 9 M.insert = TableLuan.insert
9 M.new_property_table = TableLuan.new_property_table 10 M.new_property_table = TableLuan.new_property_table
10 M.pack = TableLuan.pack 11 M.pack = TableLuan.pack