MCPcopy Index your code
hub / github.com/getsentry/sentry-javascript / opera10

Function opera10

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

Source from the content-addressed store, hash-verified

164const opera10Regex = / line (\d+).*script (?:in )?(\S+)(?:: in function (\S+))?$/i;
165
166const opera10: StackLineParserFn = line => {
167 const parts = opera10Regex.exec(line) as null | [string, string, string, string];
168 return parts ? createFrame(parts[2], parts[3] || UNKNOWN_FUNCTION, +parts[1]) : undefined;
169};
170
171export const opera10StackLineParser: StackLineParser = [OPERA10_PRIORITY, opera10];
172

Callers

nothing calls this directly

Calls 2

createFrameFunction · 0.85
execMethod · 0.80

Tested by

no test coverage detected