[go-nuts] Re: Getting type information from name as a string

2019-05-22 Thread info
@rog: I guess this could be the answer. I saw it at mockgen later as well. Thank you for that hint. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+u

[go-nuts] Getting type information from name as a string

2019-05-21 Thread info
Hi, for a code generator I want to get a type of a string which is passed by an argument by go generate. So I have sth. like "[]int" and now I need to know if it is a slice/rangeable, of type int etc. Is this somehow possible? I cannot have a predefined map from strings to types because it is s

[go-nuts] Go Profiling helper extension for VSCode

2019-04-22 Thread mediamax . info
Hello, we have published our first version of VSCode extension to help in profiling of your benchmarks. This is a first test version. Please post your feedback here. marketplace link: https://marketplace.visualstudio.com/items?itemName=MaxMedia.go-prof -- You received this message because

[go-nuts] Re: `go tool vet -v` throwing errors for no apparent reason

2016-10-24 Thread info
https://github.com/golang/go/issues/17571 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https:

[go-nuts] Re: `go tool vet -v` throwing errors for no apparent reason

2016-10-14 Thread info
`Steps to reproduce` have slightly changed: ```bash $ git clone https://github.com/bndw/pick -b develop $ cd pick $ make goget # (to install dependencies) $ sed -i "s/go tool vet/go tool vet -v/" Makefile # (to enable vet's verbose mode) $ make govet ``` -- You received this message because you