1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 15:25:07 +00:00
serenity/Base/home/anon/js/forced-gc.js
Andreas Kling d1d136b4e5 LibJS: Replace $gc() hack with a NativeFunction on the global object
To make this work, also start passing Interpreter& to native functions.
2020-03-12 20:04:54 +01:00

5 lines
52 B
JavaScript

function foo() {
var x = {};
gc();
}
foo();