#Tracking queue_free() sequence
6 messages · Page 1 of 1 (latest)
Have you tried setting a breakpoint and stepping through the code?
i don’t think breakpoints would be an option because of how queue_free works, it will execute first but what it does will only have an effect after the frame has finished (i.e. the items aren’t deleted immediately as the method is called)
my method in question executes queue_free on lots of nodes in one call
There's the NOTIFICATION_PREDELETE you could look for. Just override _notification() and check for it. You can do any logging/printing or even breakpointing you want then.