1
0
mirror of https://github.com/golang/go synced 2024-11-11 22:20:22 -07:00

doc: mention that *_js.go files are now ignored and treated like a GOOS

Fixes #26329

Change-Id: Id87fd106e69d3d9682653eb753b1de616adeed2b
Reviewed-on: https://go-review.googlesource.com/123416
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Brad Fitzpatrick 2018-07-11 21:30:09 +00:00
parent a07ee41a33
commit 40bc0a7709

View File

@ -57,6 +57,14 @@ Do not send CLs removing the interior tags from such phrases.
<p>
Go 1.11 adds an experimental port to WebAssembly (<code>js/wasm</code>).
</p>
<p>
As a result of the addition of the new <code>GOOS</code> value
"<code>js</code>" and <code>GOARCH</code> value "<code>wasm</code>",
Go files named <code>*_js.go</code> or <code>*_wasm.go</code> will
now be <a href="/pkg/go/build/#hdr-Build_Constraints">ignored by Go
tools</a> except when those GOOS/GOARCH values are being used.
If you have existing filenames matching those patterns, you will have to rename them.
</p>
<h2 id="tools">Tools</h2>