(event: VMEvent)
| 1583 | } |
| 1584 | |
| 1585 | protected async handleInspectEvent(event: VMEvent): Promise<void> { |
| 1586 | const isolateRef = event.isolate; |
| 1587 | const instanceRef = (event as any).inspectee as VMInstanceRef; |
| 1588 | const thread = isolateRef ? this.threadManager.getThreadInfoFromRef(isolateRef) : undefined; |
| 1589 | if (isolateRef && instanceRef && thread) { |
| 1590 | this.sendVariable(thread.storeData(new InspectedVariable(thread.storeData(instanceRef)))); |
| 1591 | } |
| 1592 | } |
| 1593 | |
| 1594 | private sendVariable(variablesReference: number) { |
| 1595 | const evt = new OutputEvent(""); |
nothing calls this directly
no test coverage detected