Dmitri Shuralyov

Results 118 issues of Dmitri Shuralyov

I don't see a mention in the README that `gorebuild` imposes any limitations on one's Go setup, but I see there's an issue that would prevent it from working when...

This change fixes several misspellings in the misspell project. They were found using `misspell` itself. Fixes #148.

There are misspellings in `misspell` that `misspell` itself can be used to find. They're not intentional, are they? Have you considered using `misspell` on `misspell` itself? ``` $ go list...

Currently, we have: https://github.com/dominikh/go-js-dom/blob/662b7b8f3412aba33480fc334a39340f90aafdb2/dom.go#L2460-L2465 It might be helpful and worth considering changing it to have a `Bytes() []byte` method: ```Go // File represents files as can be obtained from file...

This is an API design issue. The `fillStyle` property of `CanvasRenderingContext2D` interface can be assigned any of 3 different types, according to https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle: ![image](https://user-images.githubusercontent.com/1924134/31803398-774c9d20-b521-11e7-8b6d-8bc97d266b03.png) However, [`CanvasRenderingContext2D.FillStyle`](https://godoc.org/honnef.co/go/js/dom#CanvasRenderingContext2D.FillStyle) field is defined as...

https://github.com/rogpeppe/rog-go/blob/f57ad5e24ab7813942c045f86eda1066eb969e98/parallel/parallel_test.go#L4 It should be updated to new import path `github.com/rogpeppe/rog-go/parallel`. /cc @rogpeppe

Consider the following Go program: ```Go package main import "fmt" func main() { const foo = "foo" f(string(foo) + "bar") } func f(s string) { fmt.Println(s) } ``` I expected...

`goreturns` is advertised as a drop in replacement for `gofmt` and `goimports`, and the binary works that way. The `returns` package, however, does not. Currently, the logic to run `goimports`...

Reporting for posterity. Playground fails to run some code that contains Unicode. It doesn't always happen though. The following fails: https://gopherjs.github.io/playground/#/KEPVGsOG_W ![image](https://user-images.githubusercontent.com/1924134/33966901-4953e5c0-e02f-11e7-8fc6-53eac84472d0.png) However, the following works ok: https://gopherjs.github.io/playground/#/KEPVGsOG_W GopherJS itself...

bug

I see in https://github.com/neelance/go-angularjs/commit/ae3e8ed59a0f7fae4a3be7117ce13e78e02331ed that go-angularjs has been deprecated. /cc @neelance The playground currently uses it. I've personally never liked having to go through Angular here, and wished the playground...

proposal