We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95ac13 commit 28bcecbCopy full SHA for 28bcecb
1 file changed
front_end/panels/console/ErrorStackParser.ts
@@ -75,7 +75,7 @@ export function parseSourcePositionsFromErrorStack(
75
76
const linkCandidate = line.substring(left, right);
77
const splitResult = Common.ParsedURL.ParsedURL.splitLineAndColumn(linkCandidate);
78
- if (splitResult.url === '<anonymous>') {
+ if (splitResult.url === '<anonymous>' || splitResult.url === 'native') {
79
if (linkInfos.length && linkInfos[linkInfos.length - 1].isCallFrame && !linkInfos[linkInfos.length - 1].link) {
80
// Combine builtin frames.
81
linkInfos[linkInfos.length - 1].line += `\n${line}`;
0 commit comments