
Allows for a user to specify the breakpoint condition directly when creating the breakpoint. The new syntax looks like the following: ``` break <name> <locspec> [if <expression>] ``` Also updates docs to include more examples and locspec description instead of directing users to the online / source documentation.
6 lines
47 B
Go
6 lines
47 B
Go
package main
|
|
|
|
func main() {
|
|
println("here")
|
|
}
|