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
While exploring something else I noticed this, the closure passed to wrenCall checks arity but it's 0 in the cases I've seen. #1124 is likely related, but good to add tests for when there.
ASSERT(vm->fiber->stackTop-vm->fiber->stack >= closure->fn->arity,
"Stack must have enough arguments for method.");
The text was updated successfully, but these errors were encountered:
While exploring something else I noticed this, the closure passed to wrenCall checks arity but it's 0 in the cases I've seen.
#1124 is likely related, but good to add tests for when there.
The text was updated successfully, but these errors were encountered: