runGC method
Force a QuickJS GC pass. No-op if the engine is not ready / disposed.
Implementation
@override
void runGC() {
final rt = _rt;
if (rt == null || _disposed) return;
jsRunGC(rt);
}
Force a QuickJS GC pass. No-op if the engine is not ready / disposed.
@override
void runGC() {
final rt = _rt;
if (rt == null || _disposed) return;
jsRunGC(rt);
}