Dmitri Shuralyov

Results 869 comments of Dmitri Shuralyov

Thank you @adamgoose for providing additional information and the reproducible snippet. It has helped a lot, I'm able to understand this issue now. I haven't run into it myself because...

Hi @mspiegel, thank you for opening an issue to discuss this first, it's very helpful. Yes, a less opaque error type makes sense as a next step to consider. I...

Thanks a lot for reporting this, this is very helpful! First, the fact that you can get a stack overflow when using the library sounds like a bug. It should...

So this GraphQL query: ```GraphQL { messages { ...CommentsRecursive } } fragment CommentsRecursive on Message { comments { ...CommentFields comments { ...CommentFields comments { ...CommentFields } } } } fragment...

> non zero exit codes are normal for static analysis tools Do you mean it's normal for static analysis tools to give non-zero exit code and report zero problems?

You can use something like this to find the directory corresponding to an import path inside GOPATH, and `os.Chdir` into it during command initialization: https://github.com/go-gl/example/blob/ee0644b7c5650555db3c0f4d04f9ef5716e6c6ac/gl21-cube/cube.go#L207-L228

Thanks for your interest in this package. The upstream `golang.org/x/mobile/gl` has indeed made some internal changes since the fork point, the major one being the render-thread you mentioned. I don't...

> Thanks for the fast answer. I'm currently working on a small engine and decided to use x/mibile/gl for now. > > But once I'm confident enough in that project...

The intention behind that command was to fetch the GopherJS dependencies of `gl`. I think the `go` command has gotten stricter about rejecting unsupported GOOS/GOARCH combinations. In the past, it...

It is related to your project using modules. Unfortunately, the current version of GopherJS on the `master` branch does not have support for modules yet. This is issue https://github.com/gopherjs/gopherjs/issues/855.