gopherjs
gopherjs copied to clipboard
A compiler from Go to JavaScript
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20200124204421-9fbb57f87de9 to 0.1.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20200208060501-ecb85df21340 to 0.1.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
gopherjs build --analyze for print simply pkg info. --anylize --json print pkgs json info. for https://github.com/goplusjs/gopherjs/pull/3 `> gopherjs --analyze hello` ``` 56914 $prelude 6947 github.com/gopherjs/gopherjs/js 446 internal/cpu 879 internal/bytealg 454...
fix: #23, support hiden interface
``` package main import ( "bytes" "io" "log" ) // A version of bytes.Buffer without ReadFrom and WriteTo type Buffer struct { bytes.Buffer io.ReaderFrom // conflicts with and hides bytes.Buffer's...