We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3748ed commit f4301d9Copy full SHA for f4301d9
internal/imports/mkstdlib.go
@@ -14,7 +14,6 @@ import (
14
"bytes"
15
"fmt"
16
"go/format"
17
- exec "golang.org/x/sys/execabs"
18
"io"
19
"io/ioutil"
20
"log"
@@ -23,6 +22,8 @@ import (
23
22
"regexp"
24
"runtime"
25
"sort"
+
26
+ exec "golang.org/x/sys/execabs"
27
)
28
29
func mustOpen(name string) io.Reader {
@@ -66,6 +67,7 @@ func main() {
66
67
mustOpen(api("go1.13.txt")),
68
mustOpen(api("go1.14.txt")),
69
mustOpen(api("go1.15.txt")),
70
+ mustOpen(api("go1.16.txt")),
71
72
// The API of the syscall/js package needs to be computed explicitly,
73
// because it's not included in the GOROOT/api/go1.*.txt files at this time.
0 commit comments