stepout
Exit the current function during Go program debugging using Delve MCP, enabling developers to trace and analyze code execution more effectively. Requires a valid debug session ID.
Instructions
Step out of current function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ID of the debug session |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "ID of the debug session",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}