(details: Cdp.Runtime.ExceptionDetails)
| 614 | } |
| 615 | |
| 616 | function errorFromException(details: Cdp.Runtime.ExceptionDetails): Dap.Error { |
| 617 | const message = |
| 618 | (details.exception && objectPreview.previewException(details.exception).title) || details.text; |
| 619 | return errors.createUserError(message); |
| 620 | } |
no outgoing calls
no test coverage detected