(error: any)
| 1041 | } |
| 1042 | |
| 1043 | private errorAsDisplayValue(error: any) { |
| 1044 | const message = errorString(error); |
| 1045 | return `<${message.split("\n")[0].trim()}>`; |
| 1046 | } |
| 1047 | |
| 1048 | private async getGetterNamesForHierarchy(thread: VMIsolateRef, classRef: VMClassRef | undefined): Promise<string[]> { |
| 1049 | let getterNames: string[] = []; |
nothing calls this directly
no test coverage detected