(error, frames)
| 209 | var prepareStackTrace = prepareStackTraceWithSourceMapping; |
| 210 | |
| 211 | function prepareStackTraceWithRawStackAssignment(error, frames) { |
| 212 | if (error.rawStack) { |
| 213 | // avoid infinite recursion |
| 214 | return prepareStackTraceWithSourceMapping(error, frames); |
| 215 | } else { |
| 216 | error.rawStack = frames; |
| 217 | return prepareStackTrace(error, frames); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | Error.stackTraceLimit = 30; |
| 222 |
nothing calls this directly
no outgoing calls
no test coverage detected