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 c6a9801 commit b5f9716Copy full SHA for b5f9716
src/vm/js/nqp-runtime/core.js
@@ -1549,7 +1549,7 @@ op.backtracestrings = function(currentHLL, exception) {
1549
for (const row of backtrace(exception)) {
1550
const annotations = row.$$atkey('annotations');
1551
const sub = row.$$atkey('sub');
1552
- lines.push((first ? ' at ' : ' from ') + annotations.$$atkey('file')+ ':'+ annotations.$$atkey('line') + ' (cuid ' + sub.cuid + ')');
+ lines.push((first ? ' at ' : ' from ') + annotations.$$atkey('file').value + ':'+ annotations.$$atkey('line').value + ' (cuid ' + sub.cuid + ')');
1553
first = false;
1554
}
1555
return hll.list(currentHLL, lines);
0 commit comments