| 326 | |
| 327 | void releasePropertyName(const JSPropertyName& value) override { |
| 328 | auto ptr = value.bridge<void*>(); |
| 329 | unsafeBridge<InternedStringImpl>(ptr)->unsafeReleaseInner(); |
| 330 | } |
| 331 | |
| 332 | void garbageCollect() override {} |
| 333 | |
| 334 | void enqueueMicrotask(const JSValue& value, JSExceptionTracker& exceptionTracker) override {} |
| 335 | |
| 336 | JavaScriptContextMemoryStatistics dumpMemoryStatistics() override { |
| 337 | return JavaScriptContextMemoryStatistics(); |
nothing calls this directly
no test coverage detected