(stackParser: StackParser, ex: Error)
| 99 | } |
| 100 | |
| 101 | function eventFromError(stackParser: StackParser, ex: Error): Event { |
| 102 | return { |
| 103 | exception: { |
| 104 | values: [exceptionFromError(stackParser, ex)], |
| 105 | }, |
| 106 | }; |
| 107 | } |
| 108 | |
| 109 | /** Parses stack frames from an error */ |
| 110 | function parseStackFrames( |
no test coverage detected