{"version":3,"sources":["src/typings/chrome/Runtime/ExceptionDetails.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,UAAU,MAAM,cAAc,CAAC;AAEtC;;;;;GAKG;AACH,MAAM,CAAC,OAAO,WAAW,gBAAgB;IACvC;;;;;OAKG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;;;OAKG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;OAKG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;;OAKG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAEpB;;;;;OAKG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;;;OAKG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;IAEzB;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;CACzC","file":"ExceptionDetails.d.ts","sourcesContent":["'use strict';\n\nimport { ExecutionContextId } from './ExecutionContextId';\nimport RemoteObject from './RemoteObject';\nimport { ScriptId } from './ScriptId';\nimport StackTrace from './StackTrace';\n\n/**\n * Detailed information about exception (or error) that was thrown during script compilation or execution.\n *\n * @export\n * @interface ExceptionDetails\n */\nexport default interface ExceptionDetails {\n  /**\n   * Exception id.\n   *\n   * @type {number}\n   * @memberof ExceptionDetails\n   */\n  exceptionId: number;\n\n  /**\n   * Exception text, which should be used together with exception object when available.\n   *\n   * @type {string}\n   * @memberof ExceptionDetails\n   */\n  text: string;\n\n  /**\n   * Line number of the exception location (0-based).\n   *\n   * @type {number}\n   * @memberof ExceptionDetails\n   */\n  lineNumber: number;\n\n  /**\n   * Column number of the exception location (0-based).\n   *\n   * @type {number}\n   * @memberof ExceptionDetails\n   */\n  columnNumber: number;\n\n  /**\n   * Script ID of the exception location.\n   *\n   * @type {ScriptId}\n   * @memberof ExceptionDetails\n   */\n  scriptId?: ScriptId;\n\n  /**\n   * URL of the exception location, to be used when the script was not reported.\n   *\n   * @type {string}\n   * @memberof ExceptionDetails\n   */\n  url?: string;\n\n  /**\n   * JavaScript stack trace if available.\n   *\n   * @type {StackTrace}\n   * @memberof ExceptionDetails\n   */\n  stackTrace?: StackTrace;\n\n  /**\n   * Exception object if available.\n   *\n   * @type {RemoteObject}\n   * @memberof ExceptionDetails\n   */\n  exception?: RemoteObject;\n\n  /**\n   * Identifier of the context where exception happened.\n   *\n   * @type {ExecutionContextId}\n   * @memberof ExceptionDetails\n   */\n  executionContextId?: ExecutionContextId;\n}\n"],"sourceRoot":"../../../../.."}