mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
1 line
2.1 KiB
JSON
1 line
2.1 KiB
JSON
{"ast":null,"code":"/** An error emitted by Sentry SDKs and related utilities. */\nclass SentryError extends Error {\n /** Display name of this error instance. */\n\n constructor(message, logLevel = 'warn') {\n super(message);\n this.message = message;\n ;\n this.name = new.target.prototype.constructor.name;\n // This sets the prototype to be `Error`, not `SentryError`. It's unclear why we do this, but commenting this line\n // out causes various (seemingly totally unrelated) playwright tests consistently time out. FYI, this makes\n // instances of `SentryError` fail `obj instanceof SentryError` checks.\n Object.setPrototypeOf(this, new.target.prototype);\n this.logLevel = logLevel;\n }\n}\nexport { SentryError };","map":{"version":3,"names":["SentryError","Error","constructor","message","logLevel","name","new","target","prototype","Object","setPrototypeOf"],"sources":["C:/Users/eudes.inacio/GabineteDigital/gabinete-digital-fo/node_modules/@sentry/utils/esm/error.js"],"sourcesContent":["/** An error emitted by Sentry SDKs and related utilities. */\nclass SentryError extends Error {\n /** Display name of this error instance. */\n \n\n constructor( message, logLevel = 'warn') {\n super(message);this.message = message;;\n\n this.name = new.target.prototype.constructor.name;\n // This sets the prototype to be `Error`, not `SentryError`. It's unclear why we do this, but commenting this line\n // out causes various (seemingly totally unrelated) playwright tests consistently time out. FYI, this makes\n // instances of `SentryError` fail `obj instanceof SentryError` checks.\n Object.setPrototypeOf(this, new.target.prototype);\n this.logLevel = logLevel;\n }\n}\n\nexport { SentryError };\n"],"mappings":"AAAA;AACA,MAAMA,WAAW,SAASC,KAAK,CAAC;EAC9B;;EAGCC,WAAWA,CAAEC,OAAO,EAAEC,QAAQ,GAAG,MAAM,EAAE;IACxC,KAAK,CAACD,OAAO,CAAC;IAAC,IAAI,CAACA,OAAO,GAAGA,OAAO;IAAC;IAEtC,IAAI,CAACE,IAAI,GAAGC,GAAG,CAACC,MAAM,CAACC,SAAS,CAACN,WAAW,CAACG,IAAI;IACjD;IACA;IACA;IACAI,MAAM,CAACC,cAAc,CAAC,IAAI,EAAEJ,GAAG,CAACC,MAAM,CAACC,SAAS,CAAC;IACjD,IAAI,CAACJ,QAAQ,GAAGA,QAAQ;EAC1B;AACF;AAEA,SAASJ,WAAW"},"metadata":{},"sourceType":"module"} |