(
trace: string,
options: StackTraceParserOptions = {},
)
| 117 | } |
| 118 | |
| 119 | public parseStacktrace( |
| 120 | trace: string, |
| 121 | options: StackTraceParserOptions = {}, |
| 122 | ): ParsedStack[] { |
| 123 | return this.parent.parseStacktrace(trace, options) |
| 124 | } |
| 125 | |
| 126 | async close(): Promise<void> { |
| 127 | await this.vite.close() |
no outgoing calls
no test coverage detected