(location, delta = 5)
| 509 | } |
| 510 | |
| 511 | async function getSourceSnippet(location, delta = 5) { |
| 512 | const { scriptId } = location; |
| 513 | const { scriptSource } = await Debugger.getScriptSource({ scriptId }); |
| 514 | return new SourceSnippet(location, delta, scriptSource); |
| 515 | } |
| 516 | |
| 517 | class CallFrame { |
| 518 | constructor(callFrame) { |
no outgoing calls
no test coverage detected
searching dependent graphs…