MCPcopy Create free account
hub / github.com/codeaashu/claude-code / constructor

Method constructor

src/utils/slowOperations.ts:101–107  ·  view source on GitHub ↗
(args: IArguments)

Source from the content-addressed store, hash-verified

99 err: Error
100
101 constructor(args: IArguments) {
102 this.startTime = performance.now()
103 this.args = args
104 // V8/JSC capture the stack at construction but defer the expensive string
105 // formatting until .stack is read — so this stays off the fast path.
106 this.err = new Error()
107 }
108
109 [Symbol.dispose](): void {
110 const duration = performance.now() - this.startTime

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected