(location)
| 728 | } |
| 729 | |
| 730 | function formatLocation(location) { |
| 731 | if (!location) return '<unknown location>'; |
| 732 | const script = knownScripts[location.scriptId]; |
| 733 | const scriptUrl = script ? script.url : location.scriptUrl; |
| 734 | return `${getRelativePath(scriptUrl)}:${location.lineNumber + 1}`; |
| 735 | } |
| 736 | const breaklist = ArrayPrototypeJoin( |
| 737 | ArrayPrototypeMap( |
| 738 | knownBreakpoints, |
no test coverage detected
searching dependent graphs…