On Wed Dec 7 18:39:19 2022 +0000, Jacek Caban wrote:
One more thing I noticed is that we should probably prevent running GC recursively (during unlinkin), which would not work right.
I'm not sure how it can run recursively, since it's triggered so far only on:
* Script uninitialization (doesn't apply) * CollectGarbage (can't get called by unlinking) * Creating new object (no objects get created)
I can protect against this of course, but it seems like it would be dead code?