
This patch modifies the `step` command to step to the next source line, stepping into any function encountered along the way. Fixes #360
16 lines
130 B
Go
16 lines
130 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func callme() {
|
|
fmt.Println("hi")
|
|
}
|
|
|
|
func main() {
|
|
runtime.Breakpoint()
|
|
callme()
|
|
}
|