* gjs_maybe_gc: * * Low level version of gjs_context_maybe_gc(). */
| 660 | * Low level version of gjs_context_maybe_gc(). |
| 661 | */ |
| 662 | void gjs_maybe_gc(JSContext* cx) { |
| 663 | JS_MaybeGC(cx); |
| 664 | gjs_gc_if_needed(cx); |
| 665 | } |
| 666 | |
| 667 | const char* gjs_explain_gc_reason(JS::GCReason reason) { |
| 668 | if (JS::InternalGCReason(reason)) |
no test coverage detected