godebug
godebug copied to clipboard
DEPRECATED! https://github.com/derekparker/delve
Just wondering if there are any currently. Or even an api that I could use to do an integration.
whenever I import `net/http`, I get all sorts of errors when I try and run `godebug`. The same code works fine when I build and run it with go directly....
Hi; I run this program for testing debuger; by the way I install "go get github.com/mailgun/godebug" , but I did'n know how to use this debuger in to my program,plz...
Go 1.6 has moved to vendoring for managing dependencies. However, godebug does not build when the package has vendored dependancies. Here is the type of error message shown: In godebug_tmp_folder/github.com/my_working_dir/my_repo/my_file.go...
e.g. I have a source dir like this +src **_\+ login_server _____main.go (package main) ____**\+ login ________login.go (package login) main.go and dir login are children of dir src, login.go in...
It doesn't seem `godebug` reads the `vendor/` folder when running `godebug test`. It would be great to have it support the GO15VENDOREXPERIMENT env var.
http://www.godebug.rocks/ states breakpoints are done with ``` // godebug: break ``` Doesn't seem to work. ``` _ = "breakpoint" ``` works, though.
the source of hello.go is ``` go package main import ( "fmt" ) func main() { x := "Hello" _ = "breakpoint" y := "World" _ = "breakpoint" z :=...
I scanned the issue list and didn't see this in it. If it's not, **syntax highlighting** would be really nice. In any case, godebug is a great program -- very...