MCPcopy Create free account
hub / github.com/getsentry/sentry-javascript / opera11

Function opera11

packages/browser/src/stack-parsers.ts:176–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174 / line (\d+), column (\d+)\s*(?:in (?:<anonymous function: ([^>]+)>|([^)]+))\(.*\))? in (.*):\s*$/i;
175
176const opera11: StackLineParserFn = line => {
177 const parts = opera11Regex.exec(line) as null | [string, string, string, string, string, string];
178 return parts ? createFrame(parts[5], parts[3] || parts[4] || UNKNOWN_FUNCTION, +parts[1], +parts[2]) : undefined;
179};
180
181export const opera11StackLineParser: StackLineParser = [OPERA11_PRIORITY, opera11];
182

Callers

nothing calls this directly

Calls 2

createFrameFunction · 0.85
execMethod · 0.80

Tested by

no test coverage detected