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 89a9121 commit eddfe97Copy full SHA for eddfe97
src/vm/js/nqp-runtime/core.js
@@ -689,7 +689,7 @@ function argToJSWithCtx(ctx, obj) {
689
} else if (obj instanceof NativeStrArg) {
690
return obj.value;
691
} else {
692
- return toJSWithCtx(ctx, obj);
+ return toJSWithCtx(ctx, obj.$$decont(ctx));
693
}
694
695
@@ -701,7 +701,7 @@ function returnValueToJSWithCtx(ctx, obj) {
701
} else if (typeof obj === 'string') {
702
return obj;
703
704
+ return toJSWithCtx(ctx, obj.$$decont(obj));
705
706
707
0 commit comments