[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: __gc metamethod and error()
- From: "temp 213 qwe" <temp213@...>
- Date: Wed, 02 Jan 2019 04:14:57 +0600
setmetatable ({}, {__gc = function() print(1) error("error")
print(2) end})
It looks like at the end, garbage collector also collects
something required by error() function first. So there is no
error message from the code above, lua 5.3.5.