Thanks, that’s good news to hear. I tried a while back in
enabling --gdbjit in Node.js and I think the use cases for the plugins proposed are slightly different from --gdbjit: as far as I know GDB JIT integration has runtime overhead from the additional wiring during code compilation and so needs to be enabled when the application launches. debug_helper on the other hand would also be useful for
post-mortem debugging - i.e. debugging crash dumps collected when a release build crashes in a remote environment under usual runtime configuration in V8. The crash dump is essentially just a copy of live memory at the point of the crash and can be configured e.g. at the system level, so it has no runtime overhead and helps navigating sporadic crashes difficult to reproduce locally. Operating on a more complete dump of the process can also make it easier to e.g. investigate memory leaks or corruptions.