Jonathan Hall
Jonathan Hall
Thanks for reporting this issue. I'm sorry it's gone unnoticed for so long. Is there any possibility you can include a small code snippet (or link to the GopherJS playground)...
I'm a little bit skeptical that native JavaScript encoding can be useful in a GopherJS context, due to the special handling of `json` tags. Perhaps there are some cases where...
I've spent a couple of days on this by now, and have come to the conclusion that it's probably not a win. When using simple strings, JS is significantly faster,...
The reason I was experimenting with it is that I wanted to use nullable values in a struct. Of course, JS objects already support this in a way that Go...
This is probably related, and possibly even a duplicate, of #608
Possibly related to #443, #440
I don't know about all the internal details. I just know that an object that conforms to the `error` interface, but can't be checked with `!= nil` like normal errors,...
Which versions of Go and Node.js are you using for these tests?
FTR, with Go 1.5 and Node.js 0.10.38, I get the following times: ``` $ go run bench.go 2015/10/24 10:34:47 Parsing time elapsed: 862.996855ms 2015/10/24 10:34:47 Execution time elapsed: 343.235701ms $...
As a work-around, until this issue is resolved, one can achieve similar results with a multiple-package approach. Suppose my package needs to load a `*.inc.js` file only when the `debug`...