(url: string)
| 100 | } |
| 101 | |
| 102 | scriptUrlToUrl(url: string): string { |
| 103 | const isPath = url[0] === '/' |
| 104 | || (process.platform === 'win32' && url[1] === ':' && url[2] === '\\'); |
| 105 | return isPath ? absolutePathToFileUrl(url) : url; |
| 106 | } |
| 107 | |
| 108 | supportsCustomBreakpoints(): boolean { |
| 109 | return false; |
nothing calls this directly
no test coverage detected