Open
Description
Hi
I'm trying to compare objects which crosses from VM -> host -> VM. This seems to fail. See the example below. Is it possible to add support for this? :)
Kind regards, Emil
(async () => {
const vm = (await getQuickJS()).createVm();
const arena = new Arena(vm, { isMarshalable: true });
function test(obj) {
return obj;
}
arena.expose({ test });
console.log(arena.evalCode(`let foo = {}; foo === test(foo)`)); // I want this to log 'true', but it logs 'false'
arena.dispose();
vm.dispose();
})();
Also, thanks for this great library! :)