lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi,

do you handle shared sub-tables? i.e. would tables t1 and t2 below be serialized correctly?

x = { }
t1 = { x, x }
t2 = { }; t2[1] = t2

If not, do you plan to ever support these?

-- Fabien.