We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sample.gop
// add a sample // Code generated by gop (Go+); DO NOT EDIT. package main import "fmt" const _ = true type aaa struct { ADwd string } //line b.gop:7 func main() { //line b.gop:7:1 fmt.Println(map[interface {}]string{"1": "", 2: "2"}) //line b.gop:8:1 fmt.Println([]interface {}{1, "2", 3.2}) //line b.gop:15:1 fmt.Println("wdsefsf") }
// Code generated by gop (Go+); DO NOT EDIT. package main import "fmt" const _ = true type aaa struct { ADwd string } //line b.gop:7 func main() { //line b.gop:7:1 fmt.Println(map[interface {}]string{"1": "", 2: "2"}) //line b.gop:8:1 fmt.Println([]interface {}{ 1, "2", 3.2 }) //line b.gop:15:1 fmt.Println("wdsefsf") }
$ gop run ./sample.gop map[2:2 1:] [1 2 3.2] wdsefsf
gop v1.2.2 devel windows/amd64
gop code:
package main type aaa struct { ADwd string } println {"1": "", 2: "2"} println [ 1, "2", 3.2, ] // fesfsef println "wdsefsf"
The text was updated successfully, but these errors were encountered:
This issue affects the ability of gop delve to accurately breakpoint to the specified line
Sorry, something went wrong.
#1791
No branches or pull requests
The following program
sample.gop
triggers an unexpected resultExpected result
Got
Gop Version
gop v1.2.2 devel windows/amd64
Additional Notes
gop code:
The text was updated successfully, but these errors were encountered: