Results 83 comments of Richard Musiol

@r-l-x Any plan to test this again on latest master to see if we can remove the `if len(data) >= 2600`?

@r-l-x I think this PR is valuable and I'd like to move forward with it. Unfortunately it is not ready to be merged. Maybe someone else wants to pick up...

All right, no problem at all. I just wanted to get some kind of feedback so I know that you're still on board with this. :+1:

GopherJS has some constant overhead, because it includes a chunk of code in the output that is required for most programs. This also applies to the normal Go compiler, e.g....

Yes, DCE is applied to the standard packages, else the output would be much bigger. The `time` package has a large output because when you use `time.Time`, then all of...

@liamcurry You probably know that you can do ``` go js.Global.Get("document").Call("getElementById") ``` which will translate to simply ``` js $global.document.getElementById() ``` But in that case you will stay in the...

@dominikh I just checked and it seems like only `net/rpc` and `text/template` are using `Method()` or `MethodByName()`, so checking for that could work. `NumMethod()` is used more often, but this...

My problem ist not with marking the interfaces, but with code breaking quite unexpectedly if you don't mark it, e.g. because you don't know that you have to. It simply...

@liamcurry Output size has gotten smaller, especially for `honnef.co/go/js/dom`. Is that better?