We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe9e24 commit 4f9013aCopy full SHA for 4f9013a
src/6model/reprs/MVMIter.c
@@ -301,8 +301,8 @@ MVMObject * MVM_iter(MVMThreadContext *tc, MVMObject *target) {
301
iterator = (MVMIter *)MVM_iter(tc, ctx_hash);
302
}
303
else {
304
- MVM_exception_throw_adhoc(tc, "Cannot iterate object with %s representation",
305
- REPR(target)->name);
+ MVM_exception_throw_adhoc(tc, "Cannot iterate object with %s representation (%s)",
+ REPR(target)->name, STABLE(target)->debug_name);
306
307
});
308
return (MVMObject *)iterator;
0 commit comments