next
Step to the next line in a Go program debug session using the Delve debugger. Provide the session ID to continue debugging and analyze code progression effectively.
Instructions
Step over to next line
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"
}