@dxos/debug 0.8.3 → 0.8.4-main.16b68245aa

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/assert.ts", "../../../src/error-handler.ts", "../../../src/error-stream.ts", "../../../src/fail.ts", "../../../src/inspect.ts", "../../../src/log-method.ts", "../../../src/raise.ts", "../../../src/snoop.ts", "../../../src/stack-trace.ts", "../../../src/strings.ts", "../../../src/throw.ts", "../../../src/timeout-warning.ts", "../../../src/todo.ts", "../../../src/devtools-formatter.ts", "../../../src/equality.ts", "../../../src/exposed-modules.ts", "../../../src/inspect-custom.ts"],
4
- "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * A simple syntax sugar to write `value as T` as a statement.\n *\n * NOTE: This does not provide any type safety.\n * It's just for convenience so that autocomplete works for value.\n * It's recommended to check the type URL manually beforehand or use `assertAnyType` instead.\n * @param value\n */\nexport const checkType = <T>(value: T): T => value;\n", "//\n// Copyright 2020 DXOS.org\n//\n\nimport { EventEmitter } from 'node:events';\n\n/**\n * Listens for global errors.\n */\nexport class ErrorHandler extends EventEmitter {\n _listener: EventListener;\n\n constructor() {\n super();\n\n this._listener = (event: any) => {\n const cause = event.error || event.reason || event;\n const message = cause.stack || cause.message || cause.toString();\n this.emit('error', message);\n\n // Default logging.\n // code event.preventDefault();\n };\n\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/error_event\n window.addEventListener('error', this._listener);\n\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/unhandledrejection_event\n window.addEventListener('unhandledrejection', this._listener);\n }\n\n reset(): void {\n window.removeEventListener('error', this._listener);\n window.removeEventListener('unhandledrejection', this._listener);\n }\n}\n", "//\n// Copyright 2021 DXOS.org\n//\n\nexport type ErrorHandlerCallback = (error: Error) => void;\n\n/**\n * Represents a stream of errors that entities can expose.\n */\nexport class ErrorStream {\n private _handler: ErrorHandlerCallback | undefined;\n\n private _unhandledErrors = 0;\n\n assertNoUnhandledErrors(): void {\n if (this._unhandledErrors > 0) {\n throw new Error(\n `Assertion failed: expected no unhandled errors to be thrown, but ${this._unhandledErrors} were thrown.`,\n );\n }\n }\n\n raise(error: Error): void {\n if (this._handler) {\n this._handler(error);\n } else {\n this._unhandledError(error);\n }\n }\n\n handle(handler: ErrorHandlerCallback): void {\n this._handler = handler;\n }\n\n pipeTo(receiver: ErrorStream): void {\n this.handle((error) => receiver.raise(error));\n }\n\n private _unhandledError(error: Error): void {\n this._unhandledErrors++;\n\n setTimeout(() => {\n throw error;\n });\n }\n}\n", "//\n// Copyright 2021 DXOS.org\n//\n\n/**\n * Should be used in expressions where values are cheked not to be null or undefined.\n *\n * Example:\n *\n * ```\n * const value: string | undefined;\n *\n * callMethod(value ?? failUndefined());\n * ```\n */\n// TODO(burdon): Rename failIfUndefined().\nexport const failUndefined = () => {\n throw new Error('Required value was null or undefined.');\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\n/**\n * Utility to automatically log debug info.\n *\n * ```\n * // Called via `console.log`.\n * [inspect.custom] () {\n * return inspectObject(this);\n * }\n *\n * // Called via `JSON.stringify`.\n * toJSON () {\n * return { ... };\n * }\n * ```\n */\nexport const inspectObject = (obj: any) => {\n const name = Object.getPrototypeOf(obj).constructor.name;\n return obj.toJSON ? `${name}(${inspect(obj.toJSON())})` : String(obj);\n};\n", "//\n// Copyright 2021 DXOS.org\n//\n\nexport function logMethod(\n target: any,\n propertyName: string,\n descriptor: TypedPropertyDescriptor<(...args: any) => any>,\n): void {\n const method = descriptor.value!;\n descriptor.value = function (this: any, ...args: any) {\n console.log(`Called ${target.constructor.name}.${propertyName} ${args}`);\n try {\n const result = method.apply(this, args);\n if (typeof result.catch === 'function') {\n result.catch((err: any) => {\n console.log(`Rejected ${target.constructor.name}.${propertyName}`, err);\n });\n }\n return result;\n } catch (err: any) {\n console.log(`Thrown ${target.constructor.name}.${propertyName}`, err);\n throw err;\n }\n };\n}\n", "//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * Immediatelly throws an error passed as an argument.\n *\n * Usefull for throwing errors from inside expressions.\n * For example:\n * ```\n * const item = model.getById(someId) ?? raise(new Error('Not found'));\n * ```\n * @param error\n */\nexport const raise = (error: Error): never => {\n throw error;\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nexport enum SnoopLevel {\n DEFAULT = 0,\n VERBOSE = 1,\n BOLD = 2,\n}\n\n/**\n * Utils for debug logging of functions.\n */\n// TODO(burdon): Integrate with log/spyglass.\nexport class Snoop {\n static stackFunction(err: Error): string | undefined {\n const stack = err.stack!.split('\\n');\n const match = stack[2].match(/.+\\((.+)\\).*/);\n if (match) {\n const [file, line] = match[1].split(':');\n return `[${file.substring(file.lastIndexOf('/') + 1)}:${line}]`;\n }\n }\n\n constructor(private readonly _context?: string) {}\n\n get verbose() {\n return SnoopLevel.VERBOSE;\n }\n\n get bold() {\n return SnoopLevel.BOLD;\n }\n\n format(prefix: string, name: string, args: string, level: SnoopLevel): string {\n const pre = prefix.repeat(level === SnoopLevel.BOLD ? 8 : 2);\n const label = this._context ? `${this._context}.${name}` : name;\n const line = `${pre} ${label}${args}`;\n return level === SnoopLevel.BOLD ? [pre, line, pre].join('\\n') : line;\n }\n\n in(label: string, level: SnoopLevel, ...args: any[]): string {\n return this.format('<', label, level === SnoopLevel.DEFAULT ? '' : `(${String(...args)})`, level);\n }\n\n out(label: string, level: SnoopLevel, result: any): string {\n return this.format('>', label, level === SnoopLevel.DEFAULT ? '' : ` = ${String(result)}`, level);\n }\n\n sync(f: any, label?: string, level: SnoopLevel = SnoopLevel.VERBOSE) {\n label = label ?? Snoop.stackFunction(new Error());\n return (...args: any[]) => {\n console.log(this.in(label ?? '', level, ...args));\n const r = f(...args);\n console.log(this.out(label ?? '', level, r));\n return r;\n };\n }\n\n async(f: any, label?: string, level: SnoopLevel = SnoopLevel.VERBOSE) {\n label = label ?? Snoop.stackFunction(new Error());\n return async (...args: any[]) => {\n console.log(this.in(label ?? '', level, ...args));\n const r = await f(...args);\n console.log(this.out(label ?? '', level, r));\n return r;\n };\n }\n}\n\nexport const snoop = new Snoop();\n", "//\n// Copyright 2021 DXOS.org\n//\n\n/**\n * Will capture the stack trace at the point where the class is created.\n * Stack traces are formatted lazily only when `getStack` is called.\n * Formatting is significantly more expensive than capture so only call getStack when you need them.\n */\nexport class StackTrace {\n private _stack: Error;\n\n constructor() {\n this._stack = new Error();\n }\n\n /**\n * Get stack formatted as string.\n * @param skipFrames Number of frames to skip. By default, the first frame would be the invocation of the StackTrace constructor.\n * @returns\n */\n getStack(skipFrames = 0): string {\n const stack = this._stack.stack!.split('\\n');\n return stack.slice(skipFrames + 2).join('\\n');\n }\n\n getStackArray(skipFrames = 0): string[] {\n const stack = this._stack.stack!.split('\\n');\n return stack.slice(skipFrames + 2);\n }\n}\n", "//\n// Copyright 2020 DXOS.org\n//\n\nexport const truncate = (str = '', length = 8, pad: boolean | string = false) => {\n if (str.length >= length - 1) {\n return str.substring(0, length - 1) + '…';\n } else {\n return pad ? str.padEnd(length, typeof pad === 'boolean' ? ' ' : pad[0]) : str;\n }\n};\n\nexport const truncateKey = (key: any, length = 8) => {\n const str = String(key);\n if (str.length <= length) {\n return str;\n }\n\n return str.slice(0, length);\n\n // return start\n // ? `${str.slice(0, length)}...`\n // : `${str.substring(0, length / 2)}...${str.substring(str.length - length / 2)}`;\n};\n", "//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * Wrapper for async tests.\n * @param {Function} test - Async test\n * @param errType\n * @return {Promise<void>}\n *\n * @deprecated Use vitests `expect(() => ...).toThrowError();` instead.\n */\nexport const expectToThrow = async (test: () => void, errType = Error) => {\n let thrown;\n try {\n await test();\n } catch (err) {\n thrown = err;\n }\n\n if (thrown === undefined || !(thrown instanceof errType)) {\n throw new Error(`Expected function to throw instance of ${errType.prototype.name}`);\n }\n};\n", "//\n// Copyright 2020 DXOS.org\n//\n\nimport { StackTrace } from './stack-trace';\n\n/**\n * Prints a warning to console if the action takes longer then specified timeout. No errors are thrown.\n *\n * @param timeout Timeout in milliseconds after which warning is printed.\n * @param context Context description that would be included in the printed message.\n * @param body Action which is timed.\n */\nexport const warnAfterTimeout = async <T>(timeout: number, context: string, body: () => Promise<T>): Promise<T> => {\n const stack = new StackTrace();\n const timeoutId = setTimeout(() => {\n console.warn(\n `Action \\`${context}\\` is taking more then ${timeout.toLocaleString()}ms to complete. This might be a bug.\\n${stack.getStack()}`,\n );\n }, timeout);\n try {\n return await body();\n } finally {\n clearTimeout(timeoutId);\n }\n};\n\n/**\n * A decorator that prints a warning to console if method execution time exceeds specified timeout.\n *\n * ```typescript\n * class Foo {\n * @timed(5_000)\n * async doStuff() {\n * // long task\n * }\n * }\n * ```\n *\n * This is useful for debugging code that might deadlock.\n *\n * @param timeout Timeout in milliseconds after which the warning is printed.\n */\nexport function timed(timeout: number) {\n return (target: any, propertyName: string, descriptor: TypedPropertyDescriptor<(...args: any) => any>) => {\n const method = descriptor.value!;\n descriptor.value = function (this: any, ...args: any) {\n return warnAfterTimeout(timeout, `${target.constructor.name}.${propertyName}`, () => method.apply(this, args));\n };\n };\n}\n", "//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * Throws an error. Can be used in an expression instead of a value\n */\nexport const todo = (message?: string): never => {\n throw new Error(message ?? 'Not implemented.');\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\n/**\n * Lets types provide custom formatters for the Chrome Devtools.\n *\n * https://www.mattzeunert.com/2016/02/19/custom-chrome-devtools-object-formatters.html\n * NOTE: Must be enabled in chrome devtools preferences.\n *\n * @example\n * ```typescript\n * class MyType {\n * get [devtoolsFormatter] (): DevtoolsFormatter {\n * ...\n * }\n * ```\n */\n\nexport const devtoolsFormatter = Symbol.for('devtoolsFormatter');\n\nexport type JsonML = [string, Record<string, any>?, ...(JsonML | string)[]];\n\nexport interface DevtoolsFormatter {\n /**\n * NOTE: Make sure to do an instance check and return null if the object is not of the correct type.\n */\n header: (config?: any) => JsonML | null;\n hasBody?: (config?: any) => boolean;\n body?: (config?: any) => JsonML | null;\n}\n\n/**\n * Types that implement this interface can provide custom formatters for the Chrome Devtools.\n *\n * https://firefox-source-docs.mozilla.org/devtools-user/custom_formatters/index.html\n */\nexport interface CustomDevtoolsFormattable {\n get [devtoolsFormatter](): DevtoolsFormatter;\n}\n\nconst register = () => {\n if (typeof window !== 'undefined') {\n ((window as any).devtoolsFormatters ??= []).push({\n header: (value: any, config: any) => {\n const formatter = value[devtoolsFormatter];\n if (formatter === undefined) {\n return null;\n }\n if (typeof formatter !== 'object' || formatter === null || typeof formatter.header !== 'function') {\n throw new Error(`Invalid devtools formatter for ${value.constructor.name}`);\n }\n\n return formatter.header(config);\n },\n hasBody: (value: any, config: any) => {\n const formatter = value[devtoolsFormatter];\n if (!formatter || !formatter.hasBody) {\n return false;\n }\n\n return formatter.hasBody(config);\n },\n body: (value: any, config: any) => {\n const formatter = value[devtoolsFormatter];\n if (!formatter || !formatter.body) {\n return null;\n }\n\n return formatter.body(config);\n },\n });\n }\n};\n\nregister();\n", "//\n// Copyright 2023 DXOS.org\n//\n\nexport const equalsSymbol = Symbol.for('dxos.common.equals');\n\nexport interface Equatable {\n [equalsSymbol]: (other: any) => boolean;\n}\n\n// TODO(dmaretskyi): export to @dxos/traits.\n// TODO(dmaretskyi): Hash trait for maps?\n\nexport const isEquatable = (value: any): value is Equatable => {\n return typeof value === 'object' && value !== null && typeof value[equalsSymbol] === 'function';\n};\n\nexport const isEqual = (value: Equatable, other: any) => {\n return value[equalsSymbol](other);\n};\n\n/**\n * Feed this as a third argument to `_.isEqualWith` to compare objects with `Equatable` interface.\n */\nexport const loadashEqualityFn = (value: any, other: any): boolean | undefined => {\n if (!isEquatable(value)) {\n return undefined;\n }\n return isEqual(value, other);\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\n/**\n * Allows to register a module to be used later during debugging.\n *\n * ```ts\n * import * as keys from '@dxos/keys';\n * exposeModule('@dxos/keys', keys);\n *\n * ...\n *\n * const { PublicKey } = importModule('@dxos/keys');\n * ```\n *\n * Overwrites the module if it already exists.\n */\nexport const exposeModule = (name: string, module: any) => {\n EXPOSED_MODULES[name] = module;\n};\n\n/**\n * Imports a previously exposed module by its name.\n * Throws an error if the module is not found.\n *\n * @param {string} name - The name of the module to import.\n * @returns {any} The imported module.\n * @throws {Error} If the module is not exposed.\n */\nexport const importModule = (name: string) => {\n if (EXPOSED_MODULES[name]) {\n return EXPOSED_MODULES[name];\n } else {\n throw new Error(`Module ${name} is not exposed.`);\n }\n};\n\nconst EXPOSED_MODULES: Record<string, any> = {};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport type { InspectOptionsStylized, inspect as inspectFn } from 'node:util';\n\n/**\n * Using this allows code to be written in a portable fashion, so that the custom inspect function is used in an Node.js environment and ignored in the browser.\n */\nexport const inspectCustom = Symbol.for('nodejs.util.inspect.custom');\n\nexport type CustomInspectFunction<T = any> = (\n this: T,\n depth: number,\n options: InspectOptionsStylized,\n inspect: typeof inspectFn,\n) => any; // TODO: , inspect: inspect\n\nexport interface CustomInspectable {\n [inspectCustom]: CustomInspectFunction;\n}\n"],
5
- "mappings": "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",
6
- "names": ["checkType", "value", "EventEmitter", "ErrorHandler", "EventEmitter", "_listener", "event", "cause", "error", "reason", "message", "stack", "toString", "emit", "window", "addEventListener", "reset", "removeEventListener", "ErrorStream", "_unhandledErrors", "assertNoUnhandledErrors", "Error", "raise", "error", "_handler", "_unhandledError", "handle", "handler", "pipeTo", "receiver", "setTimeout", "failUndefined", "Error", "inspect", "inspectObject", "obj", "name", "Object", "getPrototypeOf", "toJSON", "inspect", "String", "logMethod", "target", "propertyName", "descriptor", "method", "value", "args", "console", "log", "name", "result", "apply", "catch", "err", "raise", "error", "SnoopLevel", "Snoop", "stackFunction", "err", "stack", "split", "match", "file", "line", "substring", "lastIndexOf", "_context", "verbose", "bold", "format", "prefix", "name", "args", "level", "pre", "repeat", "label", "join", "in", "String", "out", "result", "sync", "f", "Error", "console", "log", "r", "async", "snoop", "StackTrace", "_stack", "Error", "getStack", "skipFrames", "stack", "split", "slice", "join", "getStackArray", "truncate", "str", "length", "pad", "substring", "padEnd", "truncateKey", "key", "String", "slice", "expectToThrow", "test", "errType", "Error", "thrown", "err", "undefined", "prototype", "name", "warnAfterTimeout", "timeout", "context", "body", "stack", "StackTrace", "timeoutId", "setTimeout", "console", "warn", "toLocaleString", "getStack", "clearTimeout", "timed", "target", "propertyName", "descriptor", "method", "value", "args", "name", "apply", "todo", "message", "Error", "devtoolsFormatter", "Symbol", "for", "register", "window", "devtoolsFormatters", "push", "header", "value", "config", "formatter", "undefined", "Error", "name", "hasBody", "body", "equalsSymbol", "Symbol", "for", "isEquatable", "value", "isEqual", "other", "loadashEqualityFn", "undefined", "exposeModule", "name", "module", "EXPOSED_MODULES", "importModule", "Error", "inspectCustom", "Symbol", "for"]
4
+ "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * A simple syntax sugar to write `value as T` as a statement.\n *\n * NOTE: This does not provide any type safety.\n * It's just for convenience so that autocomplete works for value.\n * It's recommended to check the type URL manually beforehand or use `assertAnyType` instead.\n * @param value\n */\nexport const checkType = <T>(value: T): T => value;\n", "//\n// Copyright 2020 DXOS.org\n//\n\nimport { EventEmitter } from 'node:events';\n\n/**\n * Listens for global errors.\n */\nexport class ErrorHandler extends EventEmitter {\n _listener: EventListener;\n\n constructor() {\n super();\n\n this._listener = (event: any) => {\n const cause = event.error || event.reason || event;\n const message = cause.stack || cause.message || cause.toString();\n this.emit('error', message);\n\n // Default logging.\n // code event.preventDefault();\n };\n\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/error_event\n window.addEventListener('error', this._listener);\n\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/unhandledrejection_event\n window.addEventListener('unhandledrejection', this._listener);\n }\n\n reset(): void {\n window.removeEventListener('error', this._listener);\n window.removeEventListener('unhandledrejection', this._listener);\n }\n}\n", "//\n// Copyright 2021 DXOS.org\n//\n\nexport type ErrorHandlerCallback = (error: Error) => void;\n\n/**\n * Represents a stream of errors that entities can expose.\n */\nexport class ErrorStream {\n private _handler: ErrorHandlerCallback | undefined;\n\n private _unhandledErrors = 0;\n\n assertNoUnhandledErrors(): void {\n if (this._unhandledErrors > 0) {\n throw new Error(\n `Assertion failed: expected no unhandled errors to be thrown, but ${this._unhandledErrors} were thrown.`,\n );\n }\n }\n\n raise(error: Error): void {\n if (this._handler) {\n this._handler(error);\n } else {\n this._unhandledError(error);\n }\n }\n\n handle(handler: ErrorHandlerCallback): void {\n this._handler = handler;\n }\n\n pipeTo(receiver: ErrorStream): void {\n this.handle((error) => receiver.raise(error));\n }\n\n private _unhandledError(error: Error): void {\n this._unhandledErrors++;\n\n setTimeout(() => {\n throw error;\n });\n }\n}\n", "//\n// Copyright 2021 DXOS.org\n//\n\n/**\n * Should be used in expressions where values are cheked not to be null or undefined.\n *\n * Example:\n *\n * ```\n * const value: string | undefined;\n *\n * callMethod(value ?? failUndefined());\n * ```\n */\n// TODO(burdon): Rename failIfUndefined().\nexport const failUndefined = () => {\n throw new Error('Required value was null or undefined.');\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\n/**\n * Utility to automatically log debug info.\n *\n * ```\n * // Called via `console.log`.\n * [inspect.custom] () {\n * return inspectObject(this);\n * }\n *\n * // Called via `JSON.stringify`.\n * toJSON () {\n * return { ... };\n * }\n * ```\n */\nexport const inspectObject = (obj: any) => {\n const name = Object.getPrototypeOf(obj).constructor.name;\n return obj.toJSON ? `${name}(${inspect(obj.toJSON())})` : String(obj);\n};\n", "//\n// Copyright 2021 DXOS.org\n//\n\n/* eslint-disable no-console */\n\nexport function logMethod(\n target: any,\n propertyName: string,\n descriptor: TypedPropertyDescriptor<(...args: any) => any>,\n): void {\n const method = descriptor.value!;\n descriptor.value = function (this: any, ...args: any) {\n console.log(`Called ${target.constructor.name}.${propertyName} ${args}`);\n try {\n const result = method.apply(this, args);\n if (typeof result.catch === 'function') {\n result.catch((err: any) => {\n console.log(`Rejected ${target.constructor.name}.${propertyName}`, err);\n });\n }\n return result;\n } catch (err: any) {\n console.log(`Thrown ${target.constructor.name}.${propertyName}`, err);\n throw err;\n }\n };\n}\n", "//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * Immediatelly throws an error passed as an argument.\n *\n * Usefull for throwing errors from inside expressions.\n * For example:\n * ```\n * const item = model.getById(someId) ?? raise(new Error('Not found'));\n * ```\n * @param error\n */\nexport const raise = (error: Error): never => {\n throw error;\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\n/* eslint-disable no-console */\n\nexport enum SnoopLevel {\n DEFAULT = 0,\n VERBOSE = 1,\n BOLD = 2,\n}\n\n/**\n * Utils for debug logging of functions.\n */\n// TODO(burdon): Integrate with log/spyglass.\nexport class Snoop {\n static stackFunction(err: Error): string | undefined {\n const stack = err.stack!.split('\\n');\n const match = stack[2].match(/.+\\((.+)\\).*/);\n if (match) {\n const [file, line] = match[1].split(':');\n return `[${file.substring(file.lastIndexOf('/') + 1)}:${line}]`;\n }\n }\n\n constructor(private readonly _context?: string) {}\n\n get verbose() {\n return SnoopLevel.VERBOSE;\n }\n\n get bold() {\n return SnoopLevel.BOLD;\n }\n\n format(prefix: string, name: string, args: string, level: SnoopLevel): string {\n const pre = prefix.repeat(level === SnoopLevel.BOLD ? 8 : 2);\n const label = this._context ? `${this._context}.${name}` : name;\n const line = `${pre} ${label}${args}`;\n return level === SnoopLevel.BOLD ? [pre, line, pre].join('\\n') : line;\n }\n\n in(label: string, level: SnoopLevel, ...args: any[]): string {\n return this.format('<', label, level === SnoopLevel.DEFAULT ? '' : `(${String(...args)})`, level);\n }\n\n out(label: string, level: SnoopLevel, result: any): string {\n return this.format('>', label, level === SnoopLevel.DEFAULT ? '' : ` = ${String(result)}`, level);\n }\n\n sync(f: any, label?: string, level: SnoopLevel = SnoopLevel.VERBOSE) {\n label = label ?? Snoop.stackFunction(new Error());\n return (...args: any[]) => {\n console.log(this.in(label ?? '', level, ...args));\n const r = f(...args);\n console.log(this.out(label ?? '', level, r));\n return r;\n };\n }\n\n async(f: any, label?: string, level: SnoopLevel = SnoopLevel.VERBOSE) {\n label = label ?? Snoop.stackFunction(new Error());\n return async (...args: any[]) => {\n console.log(this.in(label ?? '', level, ...args));\n const r = await f(...args);\n console.log(this.out(label ?? '', level, r));\n return r;\n };\n }\n}\n\nexport const snoop = new Snoop();\n", "//\n// Copyright 2021 DXOS.org\n//\n\n/**\n * Will capture the stack trace at the point where the class is created.\n * Stack traces are formatted lazily only when `getStack` is called.\n * Formatting is significantly more expensive than capture so only call getStack when you need them.\n */\nexport class StackTrace {\n private _stack: Error;\n\n constructor() {\n this._stack = new Error();\n }\n\n /**\n * Get stack formatted as string.\n * @param skipFrames Number of frames to skip. By default, the first frame would be the invocation of the StackTrace constructor.\n * @returns\n */\n getStack(skipFrames = 0): string {\n const stack = this._stack.stack!.split('\\n');\n return stack.slice(skipFrames + 2).join('\\n');\n }\n\n getStackArray(skipFrames = 0): string[] {\n const stack = this._stack.stack!.split('\\n');\n return stack.slice(skipFrames + 2);\n }\n}\n", "//\n// Copyright 2020 DXOS.org\n//\n\nexport const truncate = (str = '', length = 8, pad: boolean | string = false) => {\n if (str.length >= length - 1) {\n return str.substring(0, length - 1) + '…';\n } else {\n return pad ? str.padEnd(length, typeof pad === 'boolean' ? ' ' : pad[0]) : str;\n }\n};\n\nexport const truncateKey = (key: any, length = 8) => {\n const str = String(key);\n if (str.length <= length) {\n return str;\n }\n\n return str.slice(0, length);\n\n // return start\n // ? `${str.slice(0, length)}...`\n // : `${str.substring(0, length / 2)}...${str.substring(str.length - length / 2)}`;\n};\n", "//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * Wrapper for async tests.\n * @param {Function} test - Async test\n * @param errType\n * @return {Promise<void>}\n *\n * @deprecated Use vitests `expect(() => ...).toThrowError();` instead.\n */\nexport const expectToThrow = async (test: () => void, errType = Error) => {\n let thrown;\n try {\n await test();\n } catch (err) {\n thrown = err;\n }\n\n if (thrown === undefined || !(thrown instanceof errType)) {\n throw new Error(`Expected function to throw instance of ${errType.prototype.name}`);\n }\n};\n", "//\n// Copyright 2020 DXOS.org\n//\n\nimport { StackTrace } from './stack-trace';\n\n/**\n * Prints a warning to console if the action takes longer then specified timeout. No errors are thrown.\n *\n * @param timeout Timeout in milliseconds after which warning is printed.\n * @param context Context description that would be included in the printed message.\n * @param body Action which is timed.\n */\nexport const warnAfterTimeout = async <T>(timeout: number, context: string, body: () => Promise<T>): Promise<T> => {\n const stack = new StackTrace();\n const timeoutId = setTimeout(() => {\n // eslint-disable-next-line no-console\n console.warn(\n `Action \\`${context}\\` is taking more then ${timeout.toLocaleString()}ms to complete. This might be a bug.\\n${stack.getStack()}`,\n );\n }, timeout);\n try {\n return await body();\n } finally {\n clearTimeout(timeoutId);\n }\n};\n\n/**\n * A decorator that prints a warning to console if method execution time exceeds specified timeout.\n *\n * ```typescript\n * class Foo {\n * @timed(5_000)\n * async doStuff() {\n * // long task\n * }\n * }\n * ```\n *\n * This is useful for debugging code that might deadlock.\n *\n * @param timeout Timeout in milliseconds after which the warning is printed.\n */\nexport function timed(timeout: number) {\n return (target: any, propertyName: string, descriptor: TypedPropertyDescriptor<(...args: any) => any>) => {\n const method = descriptor.value!;\n descriptor.value = function (this: any, ...args: any) {\n return warnAfterTimeout(timeout, `${target.constructor.name}.${propertyName}`, () => method.apply(this, args));\n };\n };\n}\n", "//\n// Copyright 2020 DXOS.org\n//\n\n/**\n * Throws an error. Can be used in an expression instead of a value\n */\nexport const todo = (message?: string): never => {\n throw new Error(message ?? 'Not implemented.');\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\n/**\n * Lets types provide custom formatters for the Chrome Devtools.\n *\n * https://www.mattzeunert.com/2016/02/19/custom-chrome-devtools-object-formatters.html\n * NOTE: Must be enabled in chrome devtools preferences.\n *\n * @example\n * ```typescript\n * class MyType {\n * get [devtoolsFormatter] (): DevtoolsFormatter {\n * ...\n * }\n * ```\n */\n\nexport const devtoolsFormatter = Symbol.for('devtoolsFormatter');\n\nexport type JsonML = [string, Record<string, any>?, ...(JsonML | string)[]];\n\nexport interface DevtoolsFormatter {\n /**\n * NOTE: Make sure to do an instance check and return null if the object is not of the correct type.\n */\n header: (config?: any) => JsonML | null;\n hasBody?: (config?: any) => boolean;\n body?: (config?: any) => JsonML | null;\n}\n\n/**\n * Types that implement this interface can provide custom formatters for the Chrome Devtools.\n *\n * https://firefox-source-docs.mozilla.org/devtools-user/custom_formatters/index.html\n */\nexport interface CustomDevtoolsFormattable {\n get [devtoolsFormatter](): DevtoolsFormatter;\n}\n\nconst register = () => {\n if (typeof window !== 'undefined') {\n ((window as any).devtoolsFormatters ??= []).push({\n header: (value: any, config: any) => {\n const formatter = value[devtoolsFormatter];\n if (formatter === undefined) {\n return null;\n }\n if (typeof formatter !== 'object' || formatter === null || typeof formatter.header !== 'function') {\n throw new Error(`Invalid devtools formatter for ${value.constructor.name}`);\n }\n\n return formatter.header(config);\n },\n hasBody: (value: any, config: any) => {\n const formatter = value[devtoolsFormatter];\n if (!formatter || !formatter.hasBody) {\n return false;\n }\n\n return formatter.hasBody(config);\n },\n body: (value: any, config: any) => {\n const formatter = value[devtoolsFormatter];\n if (!formatter || !formatter.body) {\n return null;\n }\n\n return formatter.body(config);\n },\n });\n }\n};\n\nregister();\n", "//\n// Copyright 2023 DXOS.org\n//\n\nexport const equalsSymbol = Symbol.for('dxos.common.equals');\n\nexport interface Equatable {\n [equalsSymbol]: (other: any) => boolean;\n}\n\n// TODO(dmaretskyi): export to @dxos/traits.\n// TODO(dmaretskyi): Hash trait for maps?\n\nexport const isEquatable = (value: any): value is Equatable => {\n return typeof value === 'object' && value !== null && typeof value[equalsSymbol] === 'function';\n};\n\nexport const isEqual = (value: Equatable, other: any) => {\n return value[equalsSymbol](other);\n};\n\n/**\n * Feed this as a third argument to `_.isEqualWith` to compare objects with `Equatable` interface.\n */\nexport const loadashEqualityFn = (value: any, other: any): boolean | undefined => {\n if (!isEquatable(value)) {\n return undefined;\n }\n return isEqual(value, other);\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\n/**\n * Allows to register a module to be used later during debugging.\n *\n * ```ts\n * import * as keys from '@dxos/keys';\n * exposeModule('@dxos/keys', keys);\n *\n * ...\n *\n * const { PublicKey } = importModule('@dxos/keys');\n * ```\n *\n * Overwrites the module if it already exists.\n */\nexport const exposeModule = (name: string, module: any) => {\n EXPOSED_MODULES[name] = module;\n};\n\n/**\n * Imports a previously exposed module by its name.\n * Throws an error if the module is not found.\n *\n * @param {string} name - The name of the module to import.\n * @returns {any} The imported module.\n * @throws {Error} If the module is not exposed.\n */\nexport const importModule = (name: string) => {\n if (EXPOSED_MODULES[name]) {\n return EXPOSED_MODULES[name];\n } else {\n throw new Error(`Module ${name} is not exposed.`);\n }\n};\n\nconst EXPOSED_MODULES: Record<string, any> = {};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport type { InspectOptionsStylized, inspect as inspectFn } from 'node:util';\n\n/**\n * Using this allows code to be written in a portable fashion, so that the custom inspect function is used in an Node.js environment and ignored in the browser.\n */\nexport const inspectCustom = Symbol.for('nodejs.util.inspect.custom');\n\nexport type CustomInspectFunction<T = any> = (\n this: T,\n depth: number,\n options: InspectOptionsStylized,\n inspect: typeof inspectFn,\n) => any; // TODO: , inspect: inspect\n\nexport interface CustomInspectable {\n [inspectCustom]: CustomInspectFunction;\n}\n"],
5
+ "mappings": "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",
6
+ "names": ["checkType", "value", "EventEmitter", "ErrorHandler", "_listener", "event", "cause", "error", "reason", "message", "stack", "toString", "emit", "window", "addEventListener", "reset", "removeEventListener", "ErrorStream", "_handler", "_unhandledErrors", "assertNoUnhandledErrors", "Error", "raise", "error", "_unhandledError", "handle", "handler", "pipeTo", "receiver", "setTimeout", "failUndefined", "Error", "inspect", "inspectObject", "obj", "name", "Object", "getPrototypeOf", "toJSON", "String", "logMethod", "target", "propertyName", "descriptor", "method", "value", "args", "console", "log", "name", "result", "apply", "catch", "err", "raise", "error", "SnoopLevel", "Snoop", "stackFunction", "err", "stack", "split", "match", "file", "line", "substring", "lastIndexOf", "_context", "verbose", "bold", "format", "prefix", "name", "args", "level", "pre", "repeat", "label", "join", "in", "String", "out", "result", "sync", "f", "Error", "console", "log", "r", "async", "snoop", "StackTrace", "_stack", "Error", "getStack", "skipFrames", "stack", "split", "slice", "join", "getStackArray", "truncate", "str", "length", "pad", "substring", "padEnd", "truncateKey", "key", "String", "slice", "expectToThrow", "test", "errType", "Error", "thrown", "err", "undefined", "prototype", "name", "warnAfterTimeout", "timeout", "context", "body", "stack", "StackTrace", "timeoutId", "setTimeout", "console", "warn", "toLocaleString", "getStack", "clearTimeout", "timed", "target", "propertyName", "descriptor", "method", "value", "args", "name", "apply", "todo", "message", "Error", "devtoolsFormatter", "Symbol", "for", "register", "window", "devtoolsFormatters", "push", "header", "value", "config", "formatter", "undefined", "Error", "name", "hasBody", "body", "equalsSymbol", "Symbol", "for", "isEquatable", "value", "isEqual", "other", "loadashEqualityFn", "undefined", "exposeModule", "name", "module", "EXPOSED_MODULES", "importModule", "Error", "inspectCustom", "Symbol", "for"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"packages/common/debug/src/assert.ts":{"bytes":1294,"imports":[],"format":"esm"},"packages/common/debug/src/error-handler.ts":{"bytes":3548,"imports":[{"path":"node:events","kind":"import-statement","external":true}],"format":"esm"},"packages/common/debug/src/error-stream.ts":{"bytes":3425,"imports":[],"format":"esm"},"packages/common/debug/src/fail.ts":{"bytes":1357,"imports":[],"format":"esm"},"packages/common/debug/src/inspect.ts":{"bytes":1949,"imports":[{"path":"node:util","kind":"import-statement","external":true}],"format":"esm"},"packages/common/debug/src/log-method.ts":{"bytes":2996,"imports":[],"format":"esm"},"packages/common/debug/src/raise.ts":{"bytes":1201,"imports":[],"format":"esm"},"packages/common/debug/src/snoop.ts":{"bytes":7904,"imports":[],"format":"esm"},"packages/common/debug/src/stack-trace.ts":{"bytes":3002,"imports":[],"format":"esm"},"packages/common/debug/src/strings.ts":{"bytes":2486,"imports":[],"format":"esm"},"packages/common/debug/src/throw.ts":{"bytes":2072,"imports":[],"format":"esm"},"packages/common/debug/src/timeout-warning.ts":{"bytes":5075,"imports":[{"path":"packages/common/debug/src/stack-trace.ts","kind":"import-statement","original":"./stack-trace"}],"format":"esm"},"packages/common/debug/src/todo.ts":{"bytes":920,"imports":[],"format":"esm"},"packages/common/debug/src/devtools-formatter.ts":{"bytes":6137,"imports":[],"format":"esm"},"packages/common/debug/src/equality.ts":{"bytes":2724,"imports":[],"format":"esm"},"packages/common/debug/src/exposed-modules.ts":{"bytes":2961,"imports":[],"format":"esm"},"packages/common/debug/src/inspect-custom.ts":{"bytes":1550,"imports":[],"format":"esm"},"packages/common/debug/src/index.ts":{"bytes":1944,"imports":[{"path":"packages/common/debug/src/assert.ts","kind":"import-statement","original":"./assert"},{"path":"packages/common/debug/src/error-handler.ts","kind":"import-statement","original":"./error-handler"},{"path":"packages/common/debug/src/error-stream.ts","kind":"import-statement","original":"./error-stream"},{"path":"packages/common/debug/src/fail.ts","kind":"import-statement","original":"./fail"},{"path":"packages/common/debug/src/inspect.ts","kind":"import-statement","original":"./inspect"},{"path":"packages/common/debug/src/log-method.ts","kind":"import-statement","original":"./log-method"},{"path":"packages/common/debug/src/raise.ts","kind":"import-statement","original":"./raise"},{"path":"packages/common/debug/src/snoop.ts","kind":"import-statement","original":"./snoop"},{"path":"packages/common/debug/src/stack-trace.ts","kind":"import-statement","original":"./stack-trace"},{"path":"packages/common/debug/src/strings.ts","kind":"import-statement","original":"./strings"},{"path":"packages/common/debug/src/throw.ts","kind":"import-statement","original":"./throw"},{"path":"packages/common/debug/src/timeout-warning.ts","kind":"import-statement","original":"./timeout-warning"},{"path":"packages/common/debug/src/todo.ts","kind":"import-statement","original":"./todo"},{"path":"packages/common/debug/src/devtools-formatter.ts","kind":"import-statement","original":"./devtools-formatter"},{"path":"packages/common/debug/src/equality.ts","kind":"import-statement","original":"./equality"},{"path":"packages/common/debug/src/exposed-modules.ts","kind":"import-statement","original":"./exposed-modules"},{"path":"packages/common/debug/src/inspect-custom.ts","kind":"import-statement","original":"./inspect-custom"}],"format":"esm"}},"outputs":{"packages/common/debug/dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":23906},"packages/common/debug/dist/lib/node-esm/index.mjs":{"imports":[{"path":"node:events","kind":"import-statement","external":true},{"path":"node:util","kind":"import-statement","external":true}],"exports":["ErrorHandler","ErrorStream","Snoop","SnoopLevel","StackTrace","checkType","devtoolsFormatter","equalsSymbol","expectToThrow","exposeModule","failUndefined","importModule","inspectCustom","inspectObject","isEqual","isEquatable","loadashEqualityFn","logMethod","raise","snoop","timed","todo","truncate","truncateKey","warnAfterTimeout"],"entryPoint":"packages/common/debug/src/index.ts","inputs":{"packages/common/debug/src/assert.ts":{"bytesInOutput":34},"packages/common/debug/src/index.ts":{"bytesInOutput":0},"packages/common/debug/src/error-handler.ts":{"bytesInOutput":600},"packages/common/debug/src/error-stream.ts":{"bytesInOutput":655},"packages/common/debug/src/fail.ts":{"bytesInOutput":91},"packages/common/debug/src/inspect.ts":{"bytesInOutput":204},"packages/common/debug/src/log-method.ts":{"bytesInOutput":597},"packages/common/debug/src/raise.ts":{"bytesInOutput":43},"packages/common/debug/src/snoop.ts":{"bytesInOutput":1792},"packages/common/debug/src/stack-trace.ts":{"bytesInOutput":531},"packages/common/debug/src/strings.ts":{"bytesInOutput":396},"packages/common/debug/src/throw.ts":{"bytesInOutput":290},"packages/common/debug/src/timeout-warning.ts":{"bytesInOutput":664},"packages/common/debug/src/todo.ts":{"bytesInOutput":79},"packages/common/debug/src/devtools-formatter.ts":{"bytesInOutput":1035},"packages/common/debug/src/equality.ts":{"bytesInOutput":391},"packages/common/debug/src/exposed-modules.ts":{"bytesInOutput":271},"packages/common/debug/src/inspect-custom.ts":{"bytesInOutput":62}},"bytes":8970}}}
1
+ {"inputs":{"src/assert.ts":{"bytes":1208,"imports":[],"format":"esm"},"src/error-handler.ts":{"bytes":3455,"imports":[{"path":"node:events","kind":"import-statement","external":true}],"format":"esm"},"src/error-stream.ts":{"bytes":3333,"imports":[],"format":"esm"},"src/fail.ts":{"bytes":1269,"imports":[],"format":"esm"},"src/inspect.ts":{"bytes":1862,"imports":[{"path":"node:util","kind":"import-statement","external":true}],"format":"esm"},"src/log-method.ts":{"bytes":3002,"imports":[],"format":"esm"},"src/raise.ts":{"bytes":1116,"imports":[],"format":"esm"},"src/snoop.ts":{"bytes":7915,"imports":[],"format":"esm"},"src/stack-trace.ts":{"bytes":2911,"imports":[],"format":"esm"},"src/strings.ts":{"bytes":2395,"imports":[],"format":"esm"},"src/throw.ts":{"bytes":1987,"imports":[],"format":"esm"},"src/timeout-warning.ts":{"bytes":5103,"imports":[{"path":"src/stack-trace.ts","kind":"import-statement","original":"./stack-trace"}],"format":"esm"},"src/todo.ts":{"bytes":836,"imports":[],"format":"esm"},"src/devtools-formatter.ts":{"bytes":6039,"imports":[],"format":"esm"},"src/equality.ts":{"bytes":2632,"imports":[],"format":"esm"},"src/exposed-modules.ts":{"bytes":2866,"imports":[],"format":"esm"},"src/inspect-custom.ts":{"bytes":1456,"imports":[],"format":"esm"},"src/index.ts":{"bytes":1855,"imports":[{"path":"src/assert.ts","kind":"import-statement","original":"./assert"},{"path":"src/error-handler.ts","kind":"import-statement","original":"./error-handler"},{"path":"src/error-stream.ts","kind":"import-statement","original":"./error-stream"},{"path":"src/fail.ts","kind":"import-statement","original":"./fail"},{"path":"src/inspect.ts","kind":"import-statement","original":"./inspect"},{"path":"src/log-method.ts","kind":"import-statement","original":"./log-method"},{"path":"src/raise.ts","kind":"import-statement","original":"./raise"},{"path":"src/snoop.ts","kind":"import-statement","original":"./snoop"},{"path":"src/stack-trace.ts","kind":"import-statement","original":"./stack-trace"},{"path":"src/strings.ts","kind":"import-statement","original":"./strings"},{"path":"src/throw.ts","kind":"import-statement","original":"./throw"},{"path":"src/timeout-warning.ts","kind":"import-statement","original":"./timeout-warning"},{"path":"src/todo.ts","kind":"import-statement","original":"./todo"},{"path":"src/devtools-formatter.ts","kind":"import-statement","original":"./devtools-formatter"},{"path":"src/equality.ts","kind":"import-statement","original":"./equality"},{"path":"src/exposed-modules.ts","kind":"import-statement","original":"./exposed-modules"},{"path":"src/inspect-custom.ts","kind":"import-statement","original":"./inspect-custom"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":24009},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"node:events","kind":"import-statement","external":true},{"path":"node:util","kind":"import-statement","external":true}],"exports":["ErrorHandler","ErrorStream","Snoop","SnoopLevel","StackTrace","checkType","devtoolsFormatter","equalsSymbol","expectToThrow","exposeModule","failUndefined","importModule","inspectCustom","inspectObject","isEqual","isEquatable","loadashEqualityFn","logMethod","raise","snoop","timed","todo","truncate","truncateKey","warnAfterTimeout"],"entryPoint":"src/index.ts","inputs":{"src/assert.ts":{"bytesInOutput":34},"src/index.ts":{"bytesInOutput":0},"src/error-handler.ts":{"bytesInOutput":613},"src/error-stream.ts":{"bytesInOutput":638},"src/fail.ts":{"bytesInOutput":91},"src/inspect.ts":{"bytesInOutput":204},"src/log-method.ts":{"bytesInOutput":597},"src/raise.ts":{"bytesInOutput":43},"src/snoop.ts":{"bytesInOutput":1806},"src/stack-trace.ts":{"bytesInOutput":541},"src/strings.ts":{"bytesInOutput":396},"src/throw.ts":{"bytesInOutput":290},"src/timeout-warning.ts":{"bytesInOutput":664},"src/todo.ts":{"bytesInOutput":79},"src/devtools-formatter.ts":{"bytesInOutput":1051},"src/equality.ts":{"bytesInOutput":407},"src/exposed-modules.ts":{"bytesInOutput":271},"src/inspect-custom.ts":{"bytesInOutput":78}},"bytes":8664}}}
@@ -1 +1 @@
1
- {"version":3,"file":"assert.d.ts","sourceRoot":"","sources":["../../../src/assert.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,eAAO,MAAM,SAAS,GAAI,CAAC,EAAE,OAAO,CAAC,KAAG,CAAU,CAAC"}
1
+ {"version":3,"file":"assert.d.ts","sourceRoot":"","sources":["../../../src/assert.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,eAAO,MAAM,SAAS,GAAI,CAAC,SAAS,CAAC,KAAG,CAAU,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"equality.d.ts","sourceRoot":"","sources":["../../../src/equality.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY,eAAmC,CAAC;AAE7D,MAAM,WAAW,SAAS;IACxB,CAAC,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,OAAO,CAAC;CACzC;AAKD,eAAO,MAAM,WAAW,GAAI,OAAO,GAAG,KAAG,KAAK,IAAI,SAEjD,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,OAAO,SAAS,EAAE,OAAO,GAAG,YAEnD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,GAAI,OAAO,GAAG,EAAE,OAAO,GAAG,KAAG,OAAO,GAAG,SAKpE,CAAC"}
1
+ {"version":3,"file":"equality.d.ts","sourceRoot":"","sources":["../../../src/equality.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY,eAAmC,CAAC;AAE7D,MAAM,WAAW,SAAS;IACxB,CAAC,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,OAAO,CAAC;CACzC;AAKD,eAAO,MAAM,WAAW,UAAW,GAAG,KAAG,KAAK,IAAI,SAEjD,CAAC;AAEF,eAAO,MAAM,OAAO,UAAW,SAAS,SAAS,GAAG,YAEnD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,UAAW,GAAG,SAAS,GAAG,KAAG,OAAO,GAAG,SAKpE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"error-handler.d.ts","sourceRoot":"","sources":["../../../src/error-handler.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C;;GAEG;AACH,qBAAa,YAAa,SAAQ,YAAY;IAC5C,SAAS,EAAE,aAAa,CAAC;;IAqBzB,KAAK,IAAI,IAAI;CAId"}
1
+ {"version":3,"file":"error-handler.d.ts","sourceRoot":"","sources":["../../../src/error-handler.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C;;GAEG;AACH,qBAAa,YAAa,SAAQ,YAAY;IAC5C,SAAS,EAAE,aAAa,CAAC;IAEzB,cAiBC;IAED,KAAK,IAAI,IAAI,CAGZ;CACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"error-stream.d.ts","sourceRoot":"","sources":["../../../src/error-stream.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,oBAAoB,GAAG,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;AAE1D;;GAEG;AACH,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAmC;IAEnD,OAAO,CAAC,gBAAgB,CAAK;IAE7B,uBAAuB,IAAI,IAAI;IAQ/B,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IAQzB,MAAM,CAAC,OAAO,EAAE,oBAAoB,GAAG,IAAI;IAI3C,MAAM,CAAC,QAAQ,EAAE,WAAW,GAAG,IAAI;IAInC,OAAO,CAAC,eAAe;CAOxB"}
1
+ {"version":3,"file":"error-stream.d.ts","sourceRoot":"","sources":["../../../src/error-stream.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,oBAAoB,GAAG,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;AAE1D;;GAEG;AACH,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAmC;IAEnD,OAAO,CAAC,gBAAgB,CAAK;IAE7B,uBAAuB,IAAI,IAAI,CAM9B;IAED,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,CAMxB;IAED,MAAM,CAAC,OAAO,EAAE,oBAAoB,GAAG,IAAI,CAE1C;IAED,MAAM,CAAC,QAAQ,EAAE,WAAW,GAAG,IAAI,CAElC;IAED,OAAO,CAAC,eAAe;CAOxB"}
@@ -1 +1 @@
1
- {"version":3,"file":"exposed-modules.d.ts","sourceRoot":"","sources":["../../../src/exposed-modules.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,YAAY,GAAI,MAAM,MAAM,EAAE,QAAQ,GAAG,SAErD,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY,GAAI,MAAM,MAAM,QAMxC,CAAC"}
1
+ {"version":3,"file":"exposed-modules.d.ts","sourceRoot":"","sources":["../../../src/exposed-modules.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,YAAY,SAAU,MAAM,UAAU,GAAG,SAErD,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY,SAAU,MAAM,QAMxC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"inspect.d.ts","sourceRoot":"","sources":["../../../src/inspect.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,aAAa,GAAI,KAAK,GAAG,WAGrC,CAAC"}
1
+ {"version":3,"file":"inspect.d.ts","sourceRoot":"","sources":["../../../src/inspect.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,aAAa,QAAS,GAAG,WAGrC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"log-method.d.ts","sourceRoot":"","sources":["../../../src/log-method.ts"],"names":[],"mappings":"AAIA,wBAAgB,SAAS,CACvB,MAAM,EAAE,GAAG,EACX,YAAY,EAAE,MAAM,EACpB,UAAU,EAAE,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC,GACzD,IAAI,CAiBN"}
1
+ {"version":3,"file":"log-method.d.ts","sourceRoot":"","sources":["../../../src/log-method.ts"],"names":[],"mappings":"AAMA,wBAAgB,SAAS,CACvB,MAAM,EAAE,GAAG,EACX,YAAY,EAAE,MAAM,EACpB,UAAU,EAAE,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC,GACzD,IAAI,CAiBN"}
@@ -1 +1 @@
1
- {"version":3,"file":"raise.d.ts","sourceRoot":"","sources":["../../../src/raise.ts"],"names":[],"mappings":"AAIA;;;;;;;;;GASG;AACH,eAAO,MAAM,KAAK,GAAI,OAAO,KAAK,KAAG,KAEpC,CAAC"}
1
+ {"version":3,"file":"raise.d.ts","sourceRoot":"","sources":["../../../src/raise.ts"],"names":[],"mappings":"AAIA;;;;;;;;;GASG;AACH,eAAO,MAAM,KAAK,UAAW,KAAK,KAAG,KAEpC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"snoop.d.ts","sourceRoot":"","sources":["../../../src/snoop.ts"],"names":[],"mappings":"AAIA,oBAAY,UAAU;IACpB,OAAO,IAAI;IACX,OAAO,IAAI;IACX,IAAI,IAAI;CACT;AAED;;GAEG;AAEH,qBAAa,KAAK;IAUJ,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC;IATtC,MAAM,CAAC,aAAa,CAAC,GAAG,EAAE,KAAK,GAAG,MAAM,GAAG,SAAS;gBASvB,QAAQ,CAAC,EAAE,MAAM,YAAA;IAE9C,IAAI,OAAO,eAEV;IAED,IAAI,IAAI,eAEP;IAED,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,GAAG,MAAM;IAO7E,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,MAAM;IAI5D,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,GAAG,MAAM;IAI1D,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,GAAE,UAA+B,IAEzD,GAAG,MAAM,GAAG,EAAE;IAQxB,KAAK,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,GAAE,UAA+B,IAEpD,GAAG,MAAM,GAAG,EAAE;CAO/B;AAED,eAAO,MAAM,KAAK,OAAc,CAAC"}
1
+ {"version":3,"file":"snoop.d.ts","sourceRoot":"","sources":["../../../src/snoop.ts"],"names":[],"mappings":"AAMA,oBAAY,UAAU;IACpB,OAAO,IAAI;IACX,OAAO,IAAI;IACX,IAAI,IAAI;CACT;AAED;;GAEG;AAEH,qBAAa,KAAK;IAUJ,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC;IATtC,MAAM,CAAC,aAAa,CAAC,GAAG,EAAE,KAAK,GAAG,MAAM,GAAG,SAAS,CAOnD;IAED,YAA6B,QAAQ,CAAC,EAAE,MAAM,YAAA,EAAI;IAElD,IAAI,OAAO,eAEV;IAED,IAAI,IAAI,eAEP;IAED,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,GAAG,MAAM,CAK5E;IAED,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,MAAM,CAE3D;IAED,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,GAAG,MAAM,CAEzD;IAED,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,GAAE,UAA+B,aAEhD,GAAG,EAAE,SAMvB;IAED,KAAK,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,GAAE,UAA+B,aAE3C,GAAG,EAAE,kBAM7B;CACF;AAED,eAAO,MAAM,KAAK,OAAc,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"stack-trace.d.ts","sourceRoot":"","sources":["../../../src/stack-trace.ts"],"names":[],"mappings":"AAIA;;;;GAIG;AACH,qBAAa,UAAU;IACrB,OAAO,CAAC,MAAM,CAAQ;;IAMtB;;;;OAIG;IACH,QAAQ,CAAC,UAAU,SAAI,GAAG,MAAM;IAKhC,aAAa,CAAC,UAAU,SAAI,GAAG,MAAM,EAAE;CAIxC"}
1
+ {"version":3,"file":"stack-trace.d.ts","sourceRoot":"","sources":["../../../src/stack-trace.ts"],"names":[],"mappings":"AAIA;;;;GAIG;AACH,qBAAa,UAAU;IACrB,OAAO,CAAC,MAAM,CAAQ;IAEtB,cAEC;IAED;;;;OAIG;IACH,QAAQ,CAAC,UAAU,SAAI,GAAG,MAAM,CAG/B;IAED,aAAa,CAAC,UAAU,SAAI,GAAG,MAAM,EAAE,CAGtC;CACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"strings.d.ts","sourceRoot":"","sources":["../../../src/strings.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ,GAAI,YAAQ,EAAE,eAAU,EAAE,MAAK,OAAO,GAAG,MAAc,WAM3E,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,KAAK,GAAG,EAAE,eAAU,WAW/C,CAAC"}
1
+ {"version":3,"file":"strings.d.ts","sourceRoot":"","sources":["../../../src/strings.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ,wCAA+B,OAAO,GAAG,MAAM,WAMnE,CAAC;AAEF,eAAO,MAAM,WAAW,QAAS,GAAG,4BAWnC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"throw.d.ts","sourceRoot":"","sources":["../../../src/throw.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,GAAU,MAAM,MAAM,IAAI,EAAE,0BAAe,kBAWpE,CAAC"}
1
+ {"version":3,"file":"throw.d.ts","sourceRoot":"","sources":["../../../src/throw.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,SAAgB,MAAM,IAAI,8CAWnD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"timeout-warning.d.ts","sourceRoot":"","sources":["../../../src/timeout-warning.ts"],"names":[],"mappings":"AAMA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,GAAU,CAAC,EAAE,SAAS,MAAM,EAAE,SAAS,MAAM,EAAE,MAAM,MAAM,OAAO,CAAC,CAAC,CAAC,KAAG,OAAO,CAAC,CAAC,CAY7G,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,IAC3B,QAAQ,GAAG,EAAE,cAAc,MAAM,EAAE,YAAY,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC,UAMtG"}
1
+ {"version":3,"file":"timeout-warning.d.ts","sourceRoot":"","sources":["../../../src/timeout-warning.ts"],"names":[],"mappings":"AAMA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,GAAU,CAAC,WAAW,MAAM,WAAW,MAAM,QAAQ,MAAM,OAAO,CAAC,CAAC,CAAC,KAAG,OAAO,CAAC,CAAC,CAa7G,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,YACnB,GAAG,gBAAgB,MAAM,cAAc,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC,UAMtG"}
@@ -1 +1 @@
1
- {"version":3,"file":"todo.d.ts","sourceRoot":"","sources":["../../../src/todo.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,IAAI,GAAI,UAAU,MAAM,KAAG,KAEvC,CAAC"}
1
+ {"version":3,"file":"todo.d.ts","sourceRoot":"","sources":["../../../src/todo.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,IAAI,aAAc,MAAM,KAAG,KAEvC,CAAC"}
@@ -1 +1 @@
1
- {"version":"5.8.3"}
1
+ {"version":"7.0.0-dev.20260421.2","root":[[47,64],113],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.dom.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../../src/assert.ts","../../src/devtools-formatter.ts","../../src/equality.ts","../../src/error-handler.ts","../../src/error-stream.ts","../../src/exposed-modules.ts","../../src/fail.ts","../../src/inspect.ts","../../src/log-method.ts","../../src/raise.ts","../../src/snoop.ts","../../src/stack-trace.ts","../../src/strings.ts","../../src/throw.ts","../../src/timeout-warning.ts","../../src/todo.ts","../../src/inspect-custom.ts","../../src/index.ts","../../../../../node_modules/.pnpm/@vitest+pretty-format@4.1.5/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/display.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/helpers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/timers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/diff.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/tasks.d-Bh0IjN67.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/optional-types.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/dist/index.d.ts","../../../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../../../node_modules/.pnpm/@types+chai@5.2.2/node_modules/@types/chai/index.d.ts","../../../../../node_modules/.pnpm/@vitest+expect@4.1.5/node_modules/@vitest/expect/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/utils.d.ts","../../../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/optional-runtime-types.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/runners.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/index.d.ts","../../src/throw.test.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/disposable.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/indexable.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/iterators.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/index.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/globals.typedarray.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/buffer.buffer.d.ts","../../../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/header.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/readable.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/file.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/fetch.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/formdata.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/connector.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/client.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/errors.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/dispatcher.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-origin.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool-stats.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/handlers.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/balanced-pool.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-client.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-pool.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-errors.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/proxy-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-handler.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/api.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/interceptors.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/util.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cookies.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/patch.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/websocket.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/eventsource.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/filereader.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/content-type.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cache.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/index.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/globals.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/assert.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/assert/strict.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/async_hooks.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/buffer.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/child_process.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/cluster.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/console.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/constants.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/crypto.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dgram.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/diagnostics_channel.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dns.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dns/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/domain.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dom-events.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/events.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/fs.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/fs/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/http.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/http2.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/https.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/inspector.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/module.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/net.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/os.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/path.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/perf_hooks.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/process.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/punycode.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/querystring.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/readline.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/readline/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/repl.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/sea.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/sqlite.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream/consumers.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream/web.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/string_decoder.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/test.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/timers.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/timers/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/tls.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/trace_events.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/tty.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/url.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/util.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/v8.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/vm.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/wasi.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/worker_threads.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/zlib.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"a1aa1a5e065d48ef5c7bb99e38412f96","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"01ac052ec4a79e87229f90466a9645f8","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"edba5df642941aa062a62f6328c6df3d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bb3a710cbcda0533bb127712927cbe37","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7a42de379b489e8f7b647455bebfc576","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"692bcd75364db0f65d428801c7884466","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9ebb254bdfe39cdd407a50c4869185d0","signature":"b37de543b923c00e49af92a9574e8c30","impliedNodeFormat":1},{"version":"dc53cdc59522f7d02b9519e7fa4b7fad","signature":"51f8a5f62ce506de5ffd1931071cfb64","impliedNodeFormat":1},{"version":"3fcbc248c66b0e7ca46f27450569f89b","signature":"9d0c2b79e68b96cb70f1ecb754e759e8","impliedNodeFormat":1},{"version":"7a043fc5d7507c3783ac452fbd124c8c","signature":"e030917039f36882a63b1c540d329e70","impliedNodeFormat":1},{"version":"306404b4317542b90a91c05d4f73581e","signature":"d9c4f0382e097fea7cae5aeefdd24114","impliedNodeFormat":1},{"version":"84d721bacead17709365367b38c75351","signature":"efc538f15b03a6340c1c99115b40c1f8","impliedNodeFormat":1},{"version":"c19f1cf3ef34582e9bbf81dceb20230a","signature":"5145bb4f37fcebd25fccde7db5d5c579","impliedNodeFormat":1},{"version":"f82e546b7d269355d80bfef95f4433a1","signature":"ddf395b1ab65ce5f0103fc031e7a9f99","impliedNodeFormat":1},{"version":"fa17300946ec8e162df5272f99bdbbbd","signature":"85bab11f2eff9bef7358c92cfa929dd8","impliedNodeFormat":1},{"version":"3c9fe57c0427942a497533cb8b98f0c7","signature":"447e91fd6bab2e80d8a5d59bf8beda64","impliedNodeFormat":1},{"version":"d43de9d8b7ee9e1efd3ddf5ee5bf018d","signature":"7525ee23f85d7ecad55b0fcee9445c1b","impliedNodeFormat":1},{"version":"8bbb2cc5e9f6ba3de2c437fddf4e618f","signature":"71169471bf68ed732cade998e6fd8b02","impliedNodeFormat":1},{"version":"425c9f63ae892381cd1ec12fd198f5e1","signature":"b1c7075f6507846f1e7e32d9533035b9","impliedNodeFormat":1},{"version":"f92dd68f1a106d5dd502f7f81f6ee46d","signature":"7315f9dfc7a29258ad96bc07aefb4f10","impliedNodeFormat":1},{"version":"ef6ee9ed8fc0191fd92685d1378ea610","signature":"4c360c8c27593bb9a5de3c0bc43f1aaf","impliedNodeFormat":1},{"version":"0ba5c8efd90b19d0be764d42c8a6974e","signature":"d7b9b96cfd345a3cca7382c2263ce9e3","impliedNodeFormat":1},{"version":"2dbe9455eee07c6e27013bbe0acd687c","signature":"666b2e715508f173793d0b2efd9596d2","impliedNodeFormat":1},{"version":"25e33511a311ae87888f856fdf0f6c7e","signature":"14fa75b73bd5abb06c1529d90323b984","impliedNodeFormat":1},{"version":"ed63d99e1e5c371dc120bef1b84057fc","impliedNodeFormat":99},{"version":"4d3fb552bfc7fb53c9195b2fafb512c0","impliedNodeFormat":99},{"version":"fbf7ba69043f86dc506ba28263e2e783","impliedNodeFormat":99},{"version":"a611eb6935df7737a77b34b01c631a4a","impliedNodeFormat":99},{"version":"6d08f6f1d0ee294c119d0e66f826331a","impliedNodeFormat":99},{"version":"d0abb8fa314728650d85450ff59db909","impliedNodeFormat":99},{"version":"abe007be89c2ad52c4d67fc2b0f6da6b","impliedNodeFormat":99},{"version":"64c75f6d2d6076a260a3934f79d53914","impliedNodeFormat":99},{"version":"d1d3543c4fd710bf57c1620b46224928","impliedNodeFormat":99},{"version":"d8e5827b29ff5f752cb917592f40d89e","impliedNodeFormat":99},{"version":"47f7401876f3c0a5b80bd01fbdfaed2b","impliedNodeFormat":99},{"version":"c5156ca866ebe97e9684210705e65b18","impliedNodeFormat":99},{"version":"cf03c427cb6cbebe8bd7cbad8932b8e3","impliedNodeFormat":99},{"version":"421606974dd976bfc5ae48946dc1afac","impliedNodeFormat":99},{"version":"4aeb817c2b1122f77bdaeb4e884e9479","impliedNodeFormat":99},{"version":"c52142a849d48e8e4286c2eec06173ff","impliedNodeFormat":99},{"version":"0221e2868d1f0d6df8321d945764aadb","impliedNodeFormat":99},{"version":"d2f6ad6f161f0a522886f64842c96a0e","impliedNodeFormat":99},{"version":"618ace1500cc84e42bc2e47c64f8c407","impliedNodeFormat":99},{"version":"9dd3c481cc870c4bf19e59d34f030a27","impliedNodeFormat":99},{"version":"b5c81396e966d59acab5a45f66b70866","impliedNodeFormat":99},{"version":"f94aa434ddb9e71f6e80395de85f6850","impliedNodeFormat":99},{"version":"3486e8f7f01b9874a793ddd451eb62a5","impliedNodeFormat":99},{"version":"cb0e7222aae349c2fb4f89b26efa81bd","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"0d7bbad7f82c886c5f36730065aec119","impliedNodeFormat":99},{"version":"369460c2755240ac2d3d006f09adb5ca","impliedNodeFormat":99},{"version":"4509fca76e721cdf9edb2d028395a117","impliedNodeFormat":99},"548472bfd4ebe2f1c8f494b960a27836",{"version":"31d11e53cef40d113a56c173ad0ac9f4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c51637edf65b89d39356deff680ed36","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"b80d7107e7f3e430139e1bff13ac1681","impliedNodeFormat":99},{"version":"bd01f3bcdc72c9256e5cd5093d132df3","impliedNodeFormat":99},{"version":"b01bdc9acbaf3eb24eef464959e8e627","impliedNodeFormat":99},{"version":"2a75a1a065e5d0439fa1514d9c89b0eb","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"c01d22bc96b89eedc0ed1f11d8c270ab","impliedNodeFormat":99},{"version":"c15bc5b81c64386efb6f85fb596c4349","impliedNodeFormat":99},{"version":"5794a694c1f75a9cc38cb5e9c757224e","impliedNodeFormat":99},{"version":"4040d5640775a803b2ca1aa914f7a1d4","impliedNodeFormat":99},{"version":"5ed96746ee2e7eb084ad54f0e0e518bc","impliedNodeFormat":99},{"version":"eba7786b00a4e551c36bafa71bfb1876","impliedNodeFormat":99},"8d8a98bf45979ce5401d9ca4027940cd","7d98e95d38525423bbe0f05e0a508a41","96920299d013de56061cbc74a1d658b2","439adabdf29be1212ec7acc292679f21","3eb46d20ed056dcbfa5e75bad9014661",{"version":"b46aa1886055db890de9be52a97b301e","impliedNodeFormat":99},{"version":"4e0f0fdc54324d2121de3aa67298a6d1","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},{"version":"90630acdc4134173bcf216f187bd3010","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f5a82824905a90c7452696b157ccbf8e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},"fe51d7a9bcdbcce1e65bbcf39b212298",{"version":"60edda1b5f28f8e7d7a6fae700faef3c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d81e6947fba1bc10b8eec34069255664","affectsGlobalScope":true,"impliedNodeFormat":1},"8e91e7228778516936913f666d057c19","628b774b54637325e286752c79c12432","597e516ba8427cccc7f3fe944da2f942","514fd35e5eb35bb2e5cbb908af0a0aa2","ed57ae88565308729f2327f26d684976","dcd932d6b0038f2e250e30dc10125b22","9508c917bd7e458745e222a82dd24ef0","fabf86f455f96b90538cc26320ab2765","14550b4cd9f433e0addd8b6d67614d23","3658d7d7a61e0ebff921a3292f22e90b","35fef7bac8048f583e4ce6eaa0c2a4c0","6752dc653fc7a333027249fd851fdb62","b9ad7e689b46dfba362c1bf174e69018","8b0a2930dfabdf27c69c6bb1eeabcdc8","4513b1ed15523d247040689f37fa9db2","5c0c499eed773a750903d9497beafacd","2377da227d1bac82ff7b3f2081ddf8d3","beef985b474fefeb80d27fb2c8778371","c79fc9d9f09ae598a374ae7c0b5284a4","f2caa3cebb1e6be855519004830a6be0","8ebc9f2a77c900e710801214c5cb994c","ec617a0e0577dd6a3210c3b067ecb325","1db5d06e485bd82d6d5f6e36925a8714","24b864518967840216c779b5e5f00975","8719cd8047700bfb6046798390053823","f2840afb502c94db92dab0fb8d27812f","a7e7d08b372210c203745d3eac61a411","531183cc80535e0e94226d720e5eb038","f627eb958ca52c85e42f04dce4661f86","9a43fc665bce9012a3d5fe1b574ff4dc","13f4b4da6546a34719fd6bde15fb63dd","a589216508844bfc00e62fc2d97fda45","865aea1c3209e31b076cb6fe780e769e","12e64aaf26af0f5c8f1b263dd66e3feb","928971ebbcdf5b093ef37669b33bddf6","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","9aafd1f29b4d8861c1c6c34bf83c0721",{"version":"00164cbcc1c01daff01c48524e115ebe","affectsGlobalScope":true,"impliedNodeFormat":1},"75c35382241d634380073a71ae31bc9a","7deced3ef46e082f97d49bb71622526a","71574c6791f69b167ce1ab489b2b61b2",{"version":"6df4dcd8b41052cc26a6af73c6937f86","affectsGlobalScope":true,"impliedNodeFormat":1},"cbae34574fe31d4a5ef3adee146fb6f5","4a7b1858837296766fd68ce1378e74eb",{"version":"9fc8636e70e507ea8d98a7aabd265ee5","affectsGlobalScope":true,"impliedNodeFormat":1},"c57682233d627206c477b36c1c175b7c",{"version":"5cecadfdb3e00997c9616c1d5ce6b8f4","affectsGlobalScope":true,"impliedNodeFormat":1},"c328f7ad3324dad3b014a361b567a205","12c7178deaecc79c215849791e088b34","fb3449da0f8a0403fcb36d2470b68886","57c04b416fb330a87d0a4705e6e37c2f","958d9865bfe33c94973e3d58ac66b1d0",{"version":"7ed47a7721271e796e9756b45734feaf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8bc6a5a95cd2df9f0392da0fa4cb03e3","affectsGlobalScope":true,"impliedNodeFormat":1},"775e118d246ffda9283d94772389bc3c","523e9bbd311f55326ac83a7c40fc29bd","fdd14f5f74212b0d9bd023f9f4f61e62","21baad704fab1c96b85de59aa92438b0","4a0ef467ec8fa0206d0e58fed7c6955d","41a388d3894be87ff371e130db43c3e4",{"version":"3f609011f15f3445c65cc543549895cc","affectsGlobalScope":true,"impliedNodeFormat":1},"dceaed506efef02de8922a129914605d","2500b39777a662899066e61fcf737a52","bdbbfddd2833453519a4c6864652469e",{"version":"311fbe00bc63e7cf2dab9d48d54d5e1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e6616c1a81dff896f04c18da7cf5e8a0","affectsGlobalScope":true,"impliedNodeFormat":1},"d1dfd59bf8b7e71f40ee1d3a2f1b5fcf","53c41ffbbc4356e365d72a537ffb9289","e15247d10b79191ac297212d1183ed03","dd0c03e63afe38f86d61b2d54a9ad760","20049c404ad43da435aac0c69c179cc4","9c44db35c5ff2a61538ae34208bbe504","2c7e200709d82fec821e0154eb745d9e","c626f8a955ddf43bfe6785adb1c3ca4d","c8206d568b54e5ea06131963eecd576a","cf3b2ff720e926f366519cc83c99018a",{"version":"776ec94e2f1f2ebbc5b231103a647984","affectsGlobalScope":true,"impliedNodeFormat":1},"c2e6363d164e809228f71291dcc83add",{"version":"0042ce968ec6274197843485333d3134","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bf9362f571b6cc12cc5a25da6b9a8675","affectsGlobalScope":true,"impliedNodeFormat":1},"9473140d6a11c5887d169fbdfcd0cb41","e5d364c503b63abd949a746cdc6a4066","d63b35c1a5097295f0659f5583c8fb83","3509aa3de97926c2922f378a248ddb48",{"version":"e6099c385b8384a91dc4f1e601769a6f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1413cfdb74da5bf264ec30490f261de1","affectsGlobalScope":true,"impliedNodeFormat":1},"e5c06dabd06c35e42950e36d082ba24f","ac26345510b3b253794221bf8c7d7a1d","eb4ea93209a96f6f1a9c85b8d43816fb",{"version":"a0d07c37a8456336ed8d7dfd9522ea99","affectsGlobalScope":true,"impliedNodeFormat":1},"194b317939f5bde463fc9c0f8d27a314","a7106559a4309e79d396f27199eda706"],"fileIdsList":[[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[93,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[114,115,116,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[117,118,119,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210],[66,72,90,91,92,94,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[101,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[101,102,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[70,72,73,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[70,72,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[70,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,70,81,82,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,70,81,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[89,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,71,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[67,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,66,67,68,69,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[107,108,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[107,108,109,110,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[107,109,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[107,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,133,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,124,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,126,129,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[119,124,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[119,121,122,125,128,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,136,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,121,127,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,150,151,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,125,129,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[119,150,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[119,123,124,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[119,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,144,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,136,137,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,127,129,137,138,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,128,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,121,124,129,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,129,133,137,138,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,133,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,127,129,132,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,121,126,129,136,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[119,124,129,150,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[76,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[76,77,78,79,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[78,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[74,96,97,99,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[74,75,87,99,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,72,74,75,83,99,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[80,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,74,75,83,95,98,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[74,75,80,83,99,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[74,96,97,98,99,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[74,80,84,85,86,99,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,70,72,74,75,80,83,84,85,86,87,88,90,95,96,97,98,99,100,103,104,105,106,111,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[65,72,74,75,83,84,96,97,98,99,104,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[60,112,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[58,119,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211]],"options":{"allowJs":true,"composite":true,"emitDeclarationOnly":true,"declaration":true,"declarationMap":true,"experimentalDecorators":true,"jsx":3,"module":200,"noImplicitOverride":true,"noUncheckedSideEffectImports":false,"outDir":"./","rewriteRelativeImportExtensions":true,"skipLibCheck":true,"strict":true,"stripInternal":true,"sourceMap":true,"target":99,"esModuleInterop":true},"referencedMap":[[92,1],[94,2],[93,1],[159,3],[160,4],[161,5],[119,6],[162,7],[163,8],[164,9],[114,1],[117,10],[115,1],[116,1],[165,11],[166,12],[167,13],[168,14],[169,15],[170,16],[171,17],[173,1],[172,18],[174,19],[175,20],[176,21],[158,22],[118,1],[177,23],[178,24],[179,25],[212,26],[180,27],[181,28],[182,29],[183,30],[184,31],[185,32],[186,33],[187,34],[188,35],[189,36],[190,37],[191,38],[192,39],[193,40],[194,41],[196,42],[195,43],[197,44],[198,45],[199,46],[200,47],[201,48],[202,49],[203,50],[204,51],[205,52],[206,53],[207,54],[208,55],[209,56],[210,57],[211,58],[45,1],[46,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[95,59],[102,60],[103,61],[101,1],[65,1],[74,62],[73,63],[96,62],[81,64],[83,65],[82,66],[90,67],[89,1],[72,68],[66,69],[68,70],[70,71],[69,1],[71,69],[67,1],[120,1],[109,72],[111,73],[110,74],[108,75],[107,1],[97,1],[91,1],[136,76],[146,77],[135,76],[156,78],[127,79],[126,1],[155,80],[149,81],[154,79],[129,82],[143,83],[128,84],[152,85],[124,86],[123,80],[153,87],[125,88],[130,77],[131,1],[134,77],[121,1],[157,89],[147,90],[138,91],[139,92],[141,93],[137,94],[140,95],[150,80],[132,96],[133,97],[142,98],[122,1],[145,90],[144,77],[148,1],[151,99],[77,100],[80,101],[78,100],[76,1],[79,102],[98,103],[88,104],[84,105],[85,64],[105,106],[99,107],[86,108],[104,109],[75,1],[87,110],[112,111],[106,112],[100,1],[47,1],[48,1],[49,1],[50,1],[51,1],[52,1],[53,1],[64,113],[63,1],[54,1],[55,1],[56,1],[57,1],[58,1],[59,1],[113,114],[60,1],[61,115],[62,1]],"latestChangedDtsFile":"./src/throw.test.d.ts"}
package/package.json CHANGED
@@ -1,33 +1,34 @@
1
1
  {
2
2
  "name": "@dxos/debug",
3
- "version": "0.8.3",
3
+ "version": "0.8.4-main.16b68245aa",
4
4
  "description": "Debug utilities",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/dxos/dxos"
10
+ },
7
11
  "license": "MIT",
8
12
  "author": "DXOS.org",
9
13
  "sideEffects": true,
10
14
  "type": "module",
11
15
  "exports": {
12
16
  ".": {
17
+ "types": "./dist/types/src/index.d.ts",
13
18
  "browser": "./dist/lib/browser/index.mjs",
14
19
  "node": {
15
20
  "require": "./dist/lib/node/index.cjs",
16
21
  "default": "./dist/lib/node-esm/index.mjs"
17
- },
18
- "types": "./dist/types/src/index.d.ts"
22
+ }
19
23
  }
20
24
  },
21
25
  "types": "dist/types/src/index.d.ts",
22
- "typesVersions": {
23
- "*": {}
24
- },
25
26
  "files": [
26
27
  "dist",
27
28
  "src"
28
29
  ],
29
30
  "dependencies": {
30
- "@dxos/node-std": "0.8.3"
31
+ "@dxos/node-std": "0.8.4-main.16b68245aa"
31
32
  },
32
33
  "devDependencies": {},
33
34
  "publishConfig": {
package/src/log-method.ts CHANGED
@@ -2,6 +2,8 @@
2
2
  // Copyright 2021 DXOS.org
3
3
  //
4
4
 
5
+ /* eslint-disable no-console */
6
+
5
7
  export function logMethod(
6
8
  target: any,
7
9
  propertyName: string,
package/src/snoop.ts CHANGED
@@ -2,6 +2,8 @@
2
2
  // Copyright 2022 DXOS.org
3
3
  //
4
4
 
5
+ /* eslint-disable no-console */
6
+
5
7
  export enum SnoopLevel {
6
8
  DEFAULT = 0,
7
9
  VERBOSE = 1,
@@ -14,6 +14,7 @@ import { StackTrace } from './stack-trace';
14
14
  export const warnAfterTimeout = async <T>(timeout: number, context: string, body: () => Promise<T>): Promise<T> => {
15
15
  const stack = new StackTrace();
16
16
  const timeoutId = setTimeout(() => {
17
+ // eslint-disable-next-line no-console
17
18
  console.warn(
18
19
  `Action \`${context}\` is taking more then ${timeout.toLocaleString()}ms to complete. This might be a bug.\n${stack.getStack()}`,
19
20
  );