Re: [NTG-context] Surprising change in function inspect()

2019-10-22 Thread Tomas Hala
# > # >I discovered quite surprising change in the output of inspect: # # indeed, i don't want to see that stuff # you can always use: # # print(table.serialize(d)) Thanks for the explanation. But there is the difference -- serialize says only the memory address and not the stuff there. Have

Re: [NTG-context] Surprising change in function inspect()

2019-10-22 Thread Hans Hagen
On 10/22/2019 4:13 PM, Tomas Hala wrote: Hi all, using the source code == \starttext \startluacode d={} d.data={"a",0} d.tabulka=function () context("pokus") end inspect(d) d.tabulka() \stopluacode pokus \stoptext == I discovered quite surprising change in the output of

[NTG-context] Surprising change in function inspect()

2019-10-22 Thread Tomas Hala
Hi all, using the source code == \starttext \startluacode d={} d.data={"a",0} d.tabulka=function () context("pokus") end inspect(d) d.tabulka() \stopluacode pokus \stoptext == I discovered quite surprising change in the output of inspect: TL2019: table={ ["data"]={ "a", 0 }, }