(context: vscode.ExtensionContext)
| 49 | } |
| 50 | |
| 51 | export function registerLongBreakpointUI(context: vscode.ExtensionContext) { |
| 52 | context.subscriptions.push( |
| 53 | vscode.debug.onDidReceiveDebugSessionCustomEvent(event => { |
| 54 | if (event.event === 'longPrediction') { |
| 55 | promptLongBreakpoint(event.session.workspaceFolder); |
| 56 | } |
| 57 | }), |
| 58 | ); |
| 59 | } |
no test coverage detected