Dmitri Shuralyov
Dmitri Shuralyov
Hey @soroushjp, See #6. I had the _exact_ same [desire](https://github.com/shurcooL/goon#but-why) 2 years ago, and that's what my [go-goon](https://github.com/shurcooL/go-goon) fork tries to achieve. If you try it out, let me know...
FWIW, this is how go-goon currently deals with that situation: ``` Go type Inner struct { Field1 string Field2 **int } i := 123 ip := &i v := Inner{...
This is a good question. I suspect there's a chance that the [`golang.org/x/tools/go/packages`](https://godoc.org/golang.org/x/tools/go/packages) should be used to do what `gotool` does while adding support for modules, and `gotool` can be...
> And manually implementing module support by using go/packages is out of scope; Not disagreeing with your main point here, but I'd like to learn the answer to the following...
As a general observation, this library (and any other solving this task) is a great fit for fuzzing with [`go-fuzz`](https://github.com/dvyukov/go-fuzz#readme), it could find this issue and others like it.
> E.g., are there any strings like "DO NOT EDIT" that are conventionally recognized by other linter tools? If you're interested in detecting generated files, please be aware of https://github.com/golang/go/issues/13560...
Since this package is meant to be compiled with the `js` architecture, building it with `go` does not make a lot of sense. If you don't provide `-d` flag to...
I'd be very curious how [`vfsgen`](https://github.com/shurcooL/vfsgen#comparison) compares. I've created it with a very tight focus on performance and efficiency, both at generate-time and run-time. Let me know if you're interested...
I think vfsgen should be a good fit. It supports gzip compression (applied only for files that result in a positive ratio compression), it's one of its core features. I'd...
Thanks for working on this. I wanted to check if you had a need or use case for these, or if you were adding them just because they're missing? The...