This website requires JavaScript.
Explore
Help
Sign In
PenaDevops
/
delve
Watch
2
Star
0
Fork
0
You've already forked delve
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
af1ffc8504
delve
/
_fixtures
/
internal
/
dir1
/
pkg
/
main.go
9 lines
63 B
Go
Raw
Normal View
History
Unescape
Escape
proc: Names of concrete types of interfaces parsing their runtime._type Generate names of the concrete types stored inside interface variables by fully parsing their runtime._type instead of simply using the str field. This allows delve to read the contents of an interface variable when the program imports multiple packages that have the same name. It also allows delve to correctly interpret some complex anonymous types. Fixes #455
2016-09-08 16:11:20 +00:00
package
pkg
proc: allow "package/path".varname syntax If the application being debugged imports two packages with the same name (but different paths) there was no way to disambiguate the two, since the character '/' can not appear inside a go identifier. By allowing users to use a string literal as the package name a package path can be specified.
2018-06-14 12:45:04 +00:00
var
A
=
1
proc: Names of concrete types of interfaces parsing their runtime._type Generate names of the concrete types stored inside interface variables by fully parsing their runtime._type instead of simply using the str field. This allows delve to read the contents of an interface variable when the program imports multiple packages that have the same name. It also allows delve to correctly interpret some complex anonymous types. Fixes #455
2016-09-08 16:11:20 +00:00
type
SomeType
struct
{
X
int
Y
int
}
Reference in New Issue
Copy Permalink