You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Object() creates a new Object instance, it is the ctor ("constructor").
That's the first VTABLE path in OP_CALL in the vm, calling potion_object_new(), and then falling thru to the 2nd closure path.
Object returns the current Object.
That's running only the second CLOSURE path in OP_CALL in the vm, just calling the
closure without creating a new object.
However,
runs forever.
The text was updated successfully, but these errors were encountered: