A DebugEvent is emitted by the hooks to signal certain events happening in the VM. Examples are: - Hitting a breakpoint - Catching an exception - Program termination
| 62 | // - Catching an exception |
| 63 | // - Program termination |
| 64 | type DebugEvent interface { |
| 65 | anEvent() |
| 66 | } |
| 67 | |
| 68 | type DebugEventExit struct { |
| 69 | Output string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…