csharpdeeb25a2 | 1 | namespace CascadeIDE.Features.IdeMcp.Execution; |
| 2 | |
| 3 | /// <summary>DAP / отладка: делегирование регистрации хендлеров launch/attach и stepping.</summary> |
| 4 | internal sealed partial class IdeMcpCommandExecutor |
| 5 | { |
| 6 | private void RegisterDapDebug(Action<string, Handler> add) |
| 7 | { |
| 8 | RegisterDapDebugLaunchAttach(add); |
| 9 | RegisterDapDebugStepping(add); |
| 10 | } |
| 11 | } |
| 12 | |
View only · write via MCP/CIDE