aboutsummaryrefslogtreecommitdiff
path: root/testes/tracegc.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* More effort in avoiding errors in finalizersRoberto I2026-01-111-2/+7
| | | | | | | | Before calling a finalizer, Lua not only checks stack limits, but actually ensures that a minimum number of slots are already allocated for the call. (If it cannot ensure that, it postpones the finalizer.) That avoids finalizers not running due to memory errors that the programmer cannot control.
* Optional initialization for global declarationsRoberto Ierusalimschy2025-07-081-1/+1
|
* New test module 'tracegc'Roberto Ierusalimschy2021-03-011-0/+40
New module easies the inclusion of GC tracing in individual test files.