diff --git a/extract/extract.go b/extract/extract.go index 709080bbc..0e8c398b1 100644 --- a/extract/extract.go +++ b/extract/extract.go @@ -436,10 +436,12 @@ func GetMinor(part string) string { return minor } +const defaultMinorVersion = 15 + func genBuildTags() (string, error) { version := runtime.Version() - if version == "devel" { - return "", nil + if strings.HasPrefix(version, "devel") { + return "", fmt.Errorf("extracting only supported with stable releases of Go, not %v", version) } parts := strings.Split(version, ".") @@ -452,6 +454,11 @@ func genBuildTags() (string, error) { return "", fmt.Errorf("failed to parse version: %v", err) } + // Only append an upper bound if we are not on the latest go + if minor >= defaultMinorVersion { + return currentGoVersion, nil + } + nextGoVersion := parts[0] + "." + strconv.Itoa(minor+1) return currentGoVersion + ",!" + nextGoVersion, nil diff --git a/internal/cmd/extract/extract.go b/internal/cmd/extract/extract.go index e1ca5b280..4225c086d 100644 --- a/internal/cmd/extract/extract.go +++ b/internal/cmd/extract/extract.go @@ -84,11 +84,12 @@ func main() { oFile = strings.ReplaceAll(importPath, "/", "_") + ".go" } - prefix := runtime.Version() - if runtime.Version() != "devel" { - parts := strings.Split(runtime.Version(), ".") - prefix = parts[0] + "_" + extract.GetMinor(parts[1]) + version := runtime.Version() + if strings.HasPrefix(version, "devel") { + log.Fatalf("extracting only supported with stable releases of Go, not %v", version) } + parts := strings.Split(version, ".") + prefix := parts[0] + "_" + extract.GetMinor(parts[1]) f, err := os.Create(prefix + "_" + oFile) if err != nil { diff --git a/stdlib/go1_15_archive_tar.go b/stdlib/go1_15_archive_tar.go index cf36f2ff2..46e20d59e 100644 --- a/stdlib/go1_15_archive_tar.go +++ b/stdlib/go1_15_archive_tar.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_archive_zip.go b/stdlib/go1_15_archive_zip.go index f1467b4fe..3218c084b 100644 --- a/stdlib/go1_15_archive_zip.go +++ b/stdlib/go1_15_archive_zip.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_bufio.go b/stdlib/go1_15_bufio.go index f1a4fbcd3..c5cc82c41 100644 --- a/stdlib/go1_15_bufio.go +++ b/stdlib/go1_15_bufio.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract bufio'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_bytes.go b/stdlib/go1_15_bytes.go index 46ae0d58f..de20508fe 100644 --- a/stdlib/go1_15_bytes.go +++ b/stdlib/go1_15_bytes.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract bytes'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_compress_bzip2.go b/stdlib/go1_15_compress_bzip2.go index 231d72dcc..61b4e00c8 100644 --- a/stdlib/go1_15_compress_bzip2.go +++ b/stdlib/go1_15_compress_bzip2.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_compress_flate.go b/stdlib/go1_15_compress_flate.go index 512b7d307..8c96c8787 100644 --- a/stdlib/go1_15_compress_flate.go +++ b/stdlib/go1_15_compress_flate.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_compress_gzip.go b/stdlib/go1_15_compress_gzip.go index 6371f007b..4e64ac97e 100644 --- a/stdlib/go1_15_compress_gzip.go +++ b/stdlib/go1_15_compress_gzip.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_compress_lzw.go b/stdlib/go1_15_compress_lzw.go index 25ef55180..2920445f3 100644 --- a/stdlib/go1_15_compress_lzw.go +++ b/stdlib/go1_15_compress_lzw.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_compress_zlib.go b/stdlib/go1_15_compress_zlib.go index 36d8d7d49..1a426089f 100644 --- a/stdlib/go1_15_compress_zlib.go +++ b/stdlib/go1_15_compress_zlib.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_container_heap.go b/stdlib/go1_15_container_heap.go index 275f5b0b9..a3c7b5d89 100644 --- a/stdlib/go1_15_container_heap.go +++ b/stdlib/go1_15_container_heap.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract container/heap'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_container_list.go b/stdlib/go1_15_container_list.go index 196696eeb..831b4c234 100644 --- a/stdlib/go1_15_container_list.go +++ b/stdlib/go1_15_container_list.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract container/list'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_container_ring.go b/stdlib/go1_15_container_ring.go index 6fe34ad48..9ed5afdd4 100644 --- a/stdlib/go1_15_container_ring.go +++ b/stdlib/go1_15_container_ring.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract container/ring'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_context.go b/stdlib/go1_15_context.go index aa2d3a914..114b0b3af 100644 --- a/stdlib/go1_15_context.go +++ b/stdlib/go1_15_context.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract context'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto.go b/stdlib/go1_15_crypto.go index 4f9efc3df..cfdb3391f 100644 --- a/stdlib/go1_15_crypto.go +++ b/stdlib/go1_15_crypto.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_aes.go b/stdlib/go1_15_crypto_aes.go index 92f02ad5f..42cf2ec54 100644 --- a/stdlib/go1_15_crypto_aes.go +++ b/stdlib/go1_15_crypto_aes.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_cipher.go b/stdlib/go1_15_crypto_cipher.go index f0b3bccb3..ba9edeabc 100644 --- a/stdlib/go1_15_crypto_cipher.go +++ b/stdlib/go1_15_crypto_cipher.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_des.go b/stdlib/go1_15_crypto_des.go index 3a0717f35..33a14ee58 100644 --- a/stdlib/go1_15_crypto_des.go +++ b/stdlib/go1_15_crypto_des.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_dsa.go b/stdlib/go1_15_crypto_dsa.go index e22314ab8..d5fd5c89a 100644 --- a/stdlib/go1_15_crypto_dsa.go +++ b/stdlib/go1_15_crypto_dsa.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_ecdsa.go b/stdlib/go1_15_crypto_ecdsa.go index 087aa91db..c0b38a3d7 100644 --- a/stdlib/go1_15_crypto_ecdsa.go +++ b/stdlib/go1_15_crypto_ecdsa.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_ed25519.go b/stdlib/go1_15_crypto_ed25519.go index 3da5f4c13..3bd352d3b 100644 --- a/stdlib/go1_15_crypto_ed25519.go +++ b/stdlib/go1_15_crypto_ed25519.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_elliptic.go b/stdlib/go1_15_crypto_elliptic.go index fa6ce5af2..7a47f6f2d 100644 --- a/stdlib/go1_15_crypto_elliptic.go +++ b/stdlib/go1_15_crypto_elliptic.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_hmac.go b/stdlib/go1_15_crypto_hmac.go index 23a674ef9..3cea56747 100644 --- a/stdlib/go1_15_crypto_hmac.go +++ b/stdlib/go1_15_crypto_hmac.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_md5.go b/stdlib/go1_15_crypto_md5.go index 6b86b79a4..2513a91c1 100644 --- a/stdlib/go1_15_crypto_md5.go +++ b/stdlib/go1_15_crypto_md5.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_rand.go b/stdlib/go1_15_crypto_rand.go index 5a83e127a..44a61cadc 100644 --- a/stdlib/go1_15_crypto_rand.go +++ b/stdlib/go1_15_crypto_rand.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_rc4.go b/stdlib/go1_15_crypto_rc4.go index 2777e0529..49080787b 100644 --- a/stdlib/go1_15_crypto_rc4.go +++ b/stdlib/go1_15_crypto_rc4.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_rsa.go b/stdlib/go1_15_crypto_rsa.go index b62578140..aa94a38c3 100644 --- a/stdlib/go1_15_crypto_rsa.go +++ b/stdlib/go1_15_crypto_rsa.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_sha1.go b/stdlib/go1_15_crypto_sha1.go index 8c710d8d5..66f0ccdc2 100644 --- a/stdlib/go1_15_crypto_sha1.go +++ b/stdlib/go1_15_crypto_sha1.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_sha256.go b/stdlib/go1_15_crypto_sha256.go index 508ce9780..2bad67581 100644 --- a/stdlib/go1_15_crypto_sha256.go +++ b/stdlib/go1_15_crypto_sha256.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_sha512.go b/stdlib/go1_15_crypto_sha512.go index 5bacb1a30..94eb17f79 100644 --- a/stdlib/go1_15_crypto_sha512.go +++ b/stdlib/go1_15_crypto_sha512.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_subtle.go b/stdlib/go1_15_crypto_subtle.go index 82249aba4..b204758f7 100644 --- a/stdlib/go1_15_crypto_subtle.go +++ b/stdlib/go1_15_crypto_subtle.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_tls.go b/stdlib/go1_15_crypto_tls.go index e56b8bb98..80dfc319d 100644 --- a/stdlib/go1_15_crypto_tls.go +++ b/stdlib/go1_15_crypto_tls.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_x509.go b/stdlib/go1_15_crypto_x509.go index d90250e83..0a4e6690d 100644 --- a/stdlib/go1_15_crypto_x509.go +++ b/stdlib/go1_15_crypto_x509.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_crypto_x509_pkix.go b/stdlib/go1_15_crypto_x509_pkix.go index ebc92944d..b3f87c6c5 100644 --- a/stdlib/go1_15_crypto_x509_pkix.go +++ b/stdlib/go1_15_crypto_x509_pkix.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_database_sql.go b/stdlib/go1_15_database_sql.go index 5ac2208f2..d278fa9d8 100644 --- a/stdlib/go1_15_database_sql.go +++ b/stdlib/go1_15_database_sql.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract database/sql'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_database_sql_driver.go b/stdlib/go1_15_database_sql_driver.go index 7ba5d3ff1..8d4eb66ce 100644 --- a/stdlib/go1_15_database_sql_driver.go +++ b/stdlib/go1_15_database_sql_driver.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_debug_dwarf.go b/stdlib/go1_15_debug_dwarf.go index 1d289cbc7..ddf7a1374 100644 --- a/stdlib/go1_15_debug_dwarf.go +++ b/stdlib/go1_15_debug_dwarf.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_debug_elf.go b/stdlib/go1_15_debug_elf.go index 2b1719e77..0630af7b2 100644 --- a/stdlib/go1_15_debug_elf.go +++ b/stdlib/go1_15_debug_elf.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_debug_gosym.go b/stdlib/go1_15_debug_gosym.go index a06dfada9..1728795a0 100644 --- a/stdlib/go1_15_debug_gosym.go +++ b/stdlib/go1_15_debug_gosym.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_debug_macho.go b/stdlib/go1_15_debug_macho.go index d4a03d760..620c8077c 100644 --- a/stdlib/go1_15_debug_macho.go +++ b/stdlib/go1_15_debug_macho.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_debug_pe.go b/stdlib/go1_15_debug_pe.go index 41bc65262..31785ce70 100644 --- a/stdlib/go1_15_debug_pe.go +++ b/stdlib/go1_15_debug_pe.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_debug_plan9obj.go b/stdlib/go1_15_debug_plan9obj.go index 29ab308f8..ee49b00ed 100644 --- a/stdlib/go1_15_debug_plan9obj.go +++ b/stdlib/go1_15_debug_plan9obj.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding.go b/stdlib/go1_15_encoding.go index 8b4fc83ca..2f1b6d2c5 100644 --- a/stdlib/go1_15_encoding.go +++ b/stdlib/go1_15_encoding.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_ascii85.go b/stdlib/go1_15_encoding_ascii85.go index 9886d768f..6bb752d83 100644 --- a/stdlib/go1_15_encoding_ascii85.go +++ b/stdlib/go1_15_encoding_ascii85.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_asn1.go b/stdlib/go1_15_encoding_asn1.go index a42662f16..95671473f 100644 --- a/stdlib/go1_15_encoding_asn1.go +++ b/stdlib/go1_15_encoding_asn1.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_base32.go b/stdlib/go1_15_encoding_base32.go index 410df14e3..5c4eaed2e 100644 --- a/stdlib/go1_15_encoding_base32.go +++ b/stdlib/go1_15_encoding_base32.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_base64.go b/stdlib/go1_15_encoding_base64.go index a741ca24a..af62cff0c 100644 --- a/stdlib/go1_15_encoding_base64.go +++ b/stdlib/go1_15_encoding_base64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_binary.go b/stdlib/go1_15_encoding_binary.go index 8c1af0bcc..e4d60181d 100644 --- a/stdlib/go1_15_encoding_binary.go +++ b/stdlib/go1_15_encoding_binary.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_csv.go b/stdlib/go1_15_encoding_csv.go index ee1796ddf..a9e254809 100644 --- a/stdlib/go1_15_encoding_csv.go +++ b/stdlib/go1_15_encoding_csv.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_gob.go b/stdlib/go1_15_encoding_gob.go index 41a37bdd4..60e452986 100644 --- a/stdlib/go1_15_encoding_gob.go +++ b/stdlib/go1_15_encoding_gob.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_hex.go b/stdlib/go1_15_encoding_hex.go index f15310dae..63e7c299b 100644 --- a/stdlib/go1_15_encoding_hex.go +++ b/stdlib/go1_15_encoding_hex.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_json.go b/stdlib/go1_15_encoding_json.go index c1fdd9fec..92c053a8e 100644 --- a/stdlib/go1_15_encoding_json.go +++ b/stdlib/go1_15_encoding_json.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_pem.go b/stdlib/go1_15_encoding_pem.go index e5521f79a..dac035715 100644 --- a/stdlib/go1_15_encoding_pem.go +++ b/stdlib/go1_15_encoding_pem.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_encoding_xml.go b/stdlib/go1_15_encoding_xml.go index 88f665f33..cfdbaade7 100644 --- a/stdlib/go1_15_encoding_xml.go +++ b/stdlib/go1_15_encoding_xml.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_errors.go b/stdlib/go1_15_errors.go index 35480b9bc..db6618681 100644 --- a/stdlib/go1_15_errors.go +++ b/stdlib/go1_15_errors.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract errors'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_expvar.go b/stdlib/go1_15_expvar.go index a988d812f..d2621139a 100644 --- a/stdlib/go1_15_expvar.go +++ b/stdlib/go1_15_expvar.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract expvar'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_flag.go b/stdlib/go1_15_flag.go index e259dd3b9..fbc4b1b58 100644 --- a/stdlib/go1_15_flag.go +++ b/stdlib/go1_15_flag.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract flag'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_fmt.go b/stdlib/go1_15_fmt.go index fdd172ff2..5012b0820 100644 --- a/stdlib/go1_15_fmt.go +++ b/stdlib/go1_15_fmt.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract fmt'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_ast.go b/stdlib/go1_15_go_ast.go index 3574f16ff..35b9021fe 100644 --- a/stdlib/go1_15_go_ast.go +++ b/stdlib/go1_15_go_ast.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/ast'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_build.go b/stdlib/go1_15_go_build.go index 0baa2d317..a2918a9d3 100644 --- a/stdlib/go1_15_go_build.go +++ b/stdlib/go1_15_go_build.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/build'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_constant.go b/stdlib/go1_15_go_constant.go index 93f77a336..b61e64179 100644 --- a/stdlib/go1_15_go_constant.go +++ b/stdlib/go1_15_go_constant.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/constant'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_doc.go b/stdlib/go1_15_go_doc.go index d8ea9b18b..73db6677d 100644 --- a/stdlib/go1_15_go_doc.go +++ b/stdlib/go1_15_go_doc.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/doc'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_format.go b/stdlib/go1_15_go_format.go index f9310cb6e..5f06c0be2 100644 --- a/stdlib/go1_15_go_format.go +++ b/stdlib/go1_15_go_format.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/format'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_importer.go b/stdlib/go1_15_go_importer.go index d3bedcdf2..83435661e 100644 --- a/stdlib/go1_15_go_importer.go +++ b/stdlib/go1_15_go_importer.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/importer'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_parser.go b/stdlib/go1_15_go_parser.go index 9312cf023..b18fc12e3 100644 --- a/stdlib/go1_15_go_parser.go +++ b/stdlib/go1_15_go_parser.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/parser'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_printer.go b/stdlib/go1_15_go_printer.go index 59df3473f..755fb9766 100644 --- a/stdlib/go1_15_go_printer.go +++ b/stdlib/go1_15_go_printer.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/printer'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_scanner.go b/stdlib/go1_15_go_scanner.go index a7fa18687..92bcff491 100644 --- a/stdlib/go1_15_go_scanner.go +++ b/stdlib/go1_15_go_scanner.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_token.go b/stdlib/go1_15_go_token.go index ccf004b14..9c861b853 100644 --- a/stdlib/go1_15_go_token.go +++ b/stdlib/go1_15_go_token.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/token'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_go_types.go b/stdlib/go1_15_go_types.go index 525ebdb35..5a327a55d 100644 --- a/stdlib/go1_15_go_types.go +++ b/stdlib/go1_15_go_types.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract go/types'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_hash.go b/stdlib/go1_15_hash.go index 77578e299..d6c9c475f 100644 --- a/stdlib/go1_15_hash.go +++ b/stdlib/go1_15_hash.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract hash'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_hash_adler32.go b/stdlib/go1_15_hash_adler32.go index 40c8667f4..39d179528 100644 --- a/stdlib/go1_15_hash_adler32.go +++ b/stdlib/go1_15_hash_adler32.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_hash_crc32.go b/stdlib/go1_15_hash_crc32.go index bf5724b5d..a3965d130 100644 --- a/stdlib/go1_15_hash_crc32.go +++ b/stdlib/go1_15_hash_crc32.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_hash_crc64.go b/stdlib/go1_15_hash_crc64.go index b2ddd1fff..58298d860 100644 --- a/stdlib/go1_15_hash_crc64.go +++ b/stdlib/go1_15_hash_crc64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_hash_fnv.go b/stdlib/go1_15_hash_fnv.go index 2bfe4d5e7..9280be30f 100644 --- a/stdlib/go1_15_hash_fnv.go +++ b/stdlib/go1_15_hash_fnv.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_hash_maphash.go b/stdlib/go1_15_hash_maphash.go index 0ae671c8b..07ffc2ba0 100644 --- a/stdlib/go1_15_hash_maphash.go +++ b/stdlib/go1_15_hash_maphash.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_html.go b/stdlib/go1_15_html.go index 91d4b88be..038c59e66 100644 --- a/stdlib/go1_15_html.go +++ b/stdlib/go1_15_html.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract html'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_html_template.go b/stdlib/go1_15_html_template.go index da5346a64..f139e7db0 100644 --- a/stdlib/go1_15_html_template.go +++ b/stdlib/go1_15_html_template.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract html/template'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image.go b/stdlib/go1_15_image.go index 4210908f4..078703439 100644 --- a/stdlib/go1_15_image.go +++ b/stdlib/go1_15_image.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image_color.go b/stdlib/go1_15_image_color.go index 778055552..9b6bcd534 100644 --- a/stdlib/go1_15_image_color.go +++ b/stdlib/go1_15_image_color.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image/color'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image_color_palette.go b/stdlib/go1_15_image_color_palette.go index 952115d4b..afaf44f8c 100644 --- a/stdlib/go1_15_image_color_palette.go +++ b/stdlib/go1_15_image_color_palette.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image_draw.go b/stdlib/go1_15_image_draw.go index 123c1c65d..eb5ae6c30 100644 --- a/stdlib/go1_15_image_draw.go +++ b/stdlib/go1_15_image_draw.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image/draw'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image_gif.go b/stdlib/go1_15_image_gif.go index 694871676..559917439 100644 --- a/stdlib/go1_15_image_gif.go +++ b/stdlib/go1_15_image_gif.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image/gif'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image_jpeg.go b/stdlib/go1_15_image_jpeg.go index eb3d03b0f..e60c18bf1 100644 --- a/stdlib/go1_15_image_jpeg.go +++ b/stdlib/go1_15_image_jpeg.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_image_png.go b/stdlib/go1_15_image_png.go index a03414f36..97cb96f90 100644 --- a/stdlib/go1_15_image_png.go +++ b/stdlib/go1_15_image_png.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract image/png'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_index_suffixarray.go b/stdlib/go1_15_index_suffixarray.go index 18c426a3e..c7fd64ef8 100644 --- a/stdlib/go1_15_index_suffixarray.go +++ b/stdlib/go1_15_index_suffixarray.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_io.go b/stdlib/go1_15_io.go index db24be14f..b5b807503 100644 --- a/stdlib/go1_15_io.go +++ b/stdlib/go1_15_io.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract io'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_io_ioutil.go b/stdlib/go1_15_io_ioutil.go index 3e07985a0..25b602392 100644 --- a/stdlib/go1_15_io_ioutil.go +++ b/stdlib/go1_15_io_ioutil.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_log.go b/stdlib/go1_15_log.go index 1b8eacc0d..d1bcf6a9e 100644 --- a/stdlib/go1_15_log.go +++ b/stdlib/go1_15_log.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract log'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_log_syslog.go b/stdlib/go1_15_log_syslog.go index e9bfedc31..efef54639 100644 --- a/stdlib/go1_15_log_syslog.go +++ b/stdlib/go1_15_log_syslog.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. -// +build go1.15,!go1.16,!windows,!nacl,!plan9 +// +build go1.15,!windows,!nacl,!plan9 package stdlib diff --git a/stdlib/go1_15_math.go b/stdlib/go1_15_math.go index 60106723e..3a60bfbba 100644 --- a/stdlib/go1_15_math.go +++ b/stdlib/go1_15_math.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract math'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_math_big.go b/stdlib/go1_15_math_big.go index 348bbd267..08cb20cfc 100644 --- a/stdlib/go1_15_math_big.go +++ b/stdlib/go1_15_math_big.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract math/big'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_math_bits.go b/stdlib/go1_15_math_bits.go index beb481876..fa4afbc05 100644 --- a/stdlib/go1_15_math_bits.go +++ b/stdlib/go1_15_math_bits.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract math/bits'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_math_cmplx.go b/stdlib/go1_15_math_cmplx.go index d5c8509a0..52b63b556 100644 --- a/stdlib/go1_15_math_cmplx.go +++ b/stdlib/go1_15_math_cmplx.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_math_rand.go b/stdlib/go1_15_math_rand.go index 24a6fade0..836dfea36 100644 --- a/stdlib/go1_15_math_rand.go +++ b/stdlib/go1_15_math_rand.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract math/rand'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_mime.go b/stdlib/go1_15_mime.go index 9f0b03bd9..cd9d58b72 100644 --- a/stdlib/go1_15_mime.go +++ b/stdlib/go1_15_mime.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract mime'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_mime_multipart.go b/stdlib/go1_15_mime_multipart.go index e3501c71d..1b5b007d8 100644 --- a/stdlib/go1_15_mime_multipart.go +++ b/stdlib/go1_15_mime_multipart.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_mime_quotedprintable.go b/stdlib/go1_15_mime_quotedprintable.go index 7c0bcb4d6..39e27492d 100644 --- a/stdlib/go1_15_mime_quotedprintable.go +++ b/stdlib/go1_15_mime_quotedprintable.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net.go b/stdlib/go1_15_net.go index 2977d9aec..88a55aaa9 100644 --- a/stdlib/go1_15_net.go +++ b/stdlib/go1_15_net.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http.go b/stdlib/go1_15_net_http.go index 3693127d8..9d7ced86c 100644 --- a/stdlib/go1_15_net_http.go +++ b/stdlib/go1_15_net_http.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_cgi.go b/stdlib/go1_15_net_http_cgi.go index 7a3d63d30..0681ed325 100644 --- a/stdlib/go1_15_net_http_cgi.go +++ b/stdlib/go1_15_net_http_cgi.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_cookiejar.go b/stdlib/go1_15_net_http_cookiejar.go index 10eb3b300..e1744a186 100644 --- a/stdlib/go1_15_net_http_cookiejar.go +++ b/stdlib/go1_15_net_http_cookiejar.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_fcgi.go b/stdlib/go1_15_net_http_fcgi.go index 62dc7eca3..8d608b329 100644 --- a/stdlib/go1_15_net_http_fcgi.go +++ b/stdlib/go1_15_net_http_fcgi.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_httptest.go b/stdlib/go1_15_net_http_httptest.go index c145d6ec0..9e3f215f4 100644 --- a/stdlib/go1_15_net_http_httptest.go +++ b/stdlib/go1_15_net_http_httptest.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_httptrace.go b/stdlib/go1_15_net_http_httptrace.go index 72416099f..e23b13160 100644 --- a/stdlib/go1_15_net_http_httptrace.go +++ b/stdlib/go1_15_net_http_httptrace.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_httputil.go b/stdlib/go1_15_net_http_httputil.go index 80c650588..d17b1d38f 100644 --- a/stdlib/go1_15_net_http_httputil.go +++ b/stdlib/go1_15_net_http_httputil.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_http_pprof.go b/stdlib/go1_15_net_http_pprof.go index 8011f95d4..1833894b9 100644 --- a/stdlib/go1_15_net_http_pprof.go +++ b/stdlib/go1_15_net_http_pprof.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_mail.go b/stdlib/go1_15_net_mail.go index 85322ee4c..80032efb6 100644 --- a/stdlib/go1_15_net_mail.go +++ b/stdlib/go1_15_net_mail.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/mail'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_rpc.go b/stdlib/go1_15_net_rpc.go index e79e45cd0..55a69f8f0 100644 --- a/stdlib/go1_15_net_rpc.go +++ b/stdlib/go1_15_net_rpc.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_rpc_jsonrpc.go b/stdlib/go1_15_net_rpc_jsonrpc.go index 2159599f0..b96353934 100644 --- a/stdlib/go1_15_net_rpc_jsonrpc.go +++ b/stdlib/go1_15_net_rpc_jsonrpc.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_smtp.go b/stdlib/go1_15_net_smtp.go index cc1b7cc40..702925362 100644 --- a/stdlib/go1_15_net_smtp.go +++ b/stdlib/go1_15_net_smtp.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_textproto.go b/stdlib/go1_15_net_textproto.go index ccc3e5275..85894e140 100644 --- a/stdlib/go1_15_net_textproto.go +++ b/stdlib/go1_15_net_textproto.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_net_url.go b/stdlib/go1_15_net_url.go index f81507946..22394cf55 100644 --- a/stdlib/go1_15_net_url.go +++ b/stdlib/go1_15_net_url.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract net/url'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_os.go b/stdlib/go1_15_os.go index 1f5fe57ea..a54338a2a 100644 --- a/stdlib/go1_15_os.go +++ b/stdlib/go1_15_os.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract os'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_os_signal.go b/stdlib/go1_15_os_signal.go index 8fe5b5901..bf0326672 100644 --- a/stdlib/go1_15_os_signal.go +++ b/stdlib/go1_15_os_signal.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract os/signal'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_os_user.go b/stdlib/go1_15_os_user.go index ce82db3f5..f54957920 100644 --- a/stdlib/go1_15_os_user.go +++ b/stdlib/go1_15_os_user.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract os/user'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_path.go b/stdlib/go1_15_path.go index e61ebbe0b..00bbecac1 100644 --- a/stdlib/go1_15_path.go +++ b/stdlib/go1_15_path.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract path'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_path_filepath.go b/stdlib/go1_15_path_filepath.go index 1b015959a..2eb33408d 100644 --- a/stdlib/go1_15_path_filepath.go +++ b/stdlib/go1_15_path_filepath.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_reflect.go b/stdlib/go1_15_reflect.go index 47f4c2363..35fc7deab 100644 --- a/stdlib/go1_15_reflect.go +++ b/stdlib/go1_15_reflect.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract reflect'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_regexp.go b/stdlib/go1_15_regexp.go index 23955e24d..1c4c6315c 100644 --- a/stdlib/go1_15_regexp.go +++ b/stdlib/go1_15_regexp.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract regexp'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_regexp_syntax.go b/stdlib/go1_15_regexp_syntax.go index f66fe08a6..235539590 100644 --- a/stdlib/go1_15_regexp_syntax.go +++ b/stdlib/go1_15_regexp_syntax.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_runtime.go b/stdlib/go1_15_runtime.go index 564ff3022..9f4eadf19 100644 --- a/stdlib/go1_15_runtime.go +++ b/stdlib/go1_15_runtime.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract runtime'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_runtime_debug.go b/stdlib/go1_15_runtime_debug.go index 1d34cabd6..02c4e986e 100644 --- a/stdlib/go1_15_runtime_debug.go +++ b/stdlib/go1_15_runtime_debug.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_runtime_pprof.go b/stdlib/go1_15_runtime_pprof.go index 756d69010..f1d12767c 100644 --- a/stdlib/go1_15_runtime_pprof.go +++ b/stdlib/go1_15_runtime_pprof.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_runtime_trace.go b/stdlib/go1_15_runtime_trace.go index d78a25aeb..2233409c8 100644 --- a/stdlib/go1_15_runtime_trace.go +++ b/stdlib/go1_15_runtime_trace.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_sort.go b/stdlib/go1_15_sort.go index 02cd095c7..1cd9dfa90 100644 --- a/stdlib/go1_15_sort.go +++ b/stdlib/go1_15_sort.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract sort'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_strconv.go b/stdlib/go1_15_strconv.go index 8fee2957a..57bed5cf3 100644 --- a/stdlib/go1_15_strconv.go +++ b/stdlib/go1_15_strconv.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract strconv'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_strings.go b/stdlib/go1_15_strings.go index e3620ed92..5d62052fb 100644 --- a/stdlib/go1_15_strings.go +++ b/stdlib/go1_15_strings.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract strings'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_sync.go b/stdlib/go1_15_sync.go index 6d6ef98d1..5a745c8fd 100644 --- a/stdlib/go1_15_sync.go +++ b/stdlib/go1_15_sync.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract sync'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_sync_atomic.go b/stdlib/go1_15_sync_atomic.go index 1fa6d4e27..304869213 100644 --- a/stdlib/go1_15_sync_atomic.go +++ b/stdlib/go1_15_sync_atomic.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_testing.go b/stdlib/go1_15_testing.go index 8d07739a7..022a99738 100644 --- a/stdlib/go1_15_testing.go +++ b/stdlib/go1_15_testing.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract testing'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_testing_iotest.go b/stdlib/go1_15_testing_iotest.go index 9d2b081c3..b7c966f3a 100644 --- a/stdlib/go1_15_testing_iotest.go +++ b/stdlib/go1_15_testing_iotest.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_testing_quick.go b/stdlib/go1_15_testing_quick.go index 14463abee..228cf3f18 100644 --- a/stdlib/go1_15_testing_quick.go +++ b/stdlib/go1_15_testing_quick.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_text_scanner.go b/stdlib/go1_15_text_scanner.go index 8ce7ddf01..0921df9d2 100644 --- a/stdlib/go1_15_text_scanner.go +++ b/stdlib/go1_15_text_scanner.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_text_tabwriter.go b/stdlib/go1_15_text_tabwriter.go index e63652f2c..f07d549cb 100644 --- a/stdlib/go1_15_text_tabwriter.go +++ b/stdlib/go1_15_text_tabwriter.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_text_template.go b/stdlib/go1_15_text_template.go index 10c51fa8c..7147619f1 100644 --- a/stdlib/go1_15_text_template.go +++ b/stdlib/go1_15_text_template.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract text/template'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_text_template_parse.go b/stdlib/go1_15_text_template_parse.go index 6522c8041..4d0e94929 100644 --- a/stdlib/go1_15_text_template_parse.go +++ b/stdlib/go1_15_text_template_parse.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_time.go b/stdlib/go1_15_time.go index 96dd8142c..c6a6fbaa7 100644 --- a/stdlib/go1_15_time.go +++ b/stdlib/go1_15_time.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract time'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_unicode.go b/stdlib/go1_15_unicode.go index 5f433ade6..9520609a9 100644 --- a/stdlib/go1_15_unicode.go +++ b/stdlib/go1_15_unicode.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract unicode'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_unicode_utf16.go b/stdlib/go1_15_unicode_utf16.go index 630741ba4..36ea96d95 100644 --- a/stdlib/go1_15_unicode_utf16.go +++ b/stdlib/go1_15_unicode_utf16.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/go1_15_unicode_utf8.go b/stdlib/go1_15_unicode_utf8.go index beea31792..ec8bfa73a 100644 --- a/stdlib/go1_15_unicode_utf8.go +++ b/stdlib/go1_15_unicode_utf8.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package stdlib diff --git a/stdlib/stdlib.go b/stdlib/stdlib.go index d48835516..b23bc3ef1 100644 --- a/stdlib/stdlib.go +++ b/stdlib/stdlib.go @@ -1,4 +1,4 @@ -// +build go1.14,!go1.16 +// +build go1.14 // Package stdlib provides wrappers of standard library packages to be imported natively in Yaegi. package stdlib diff --git a/stdlib/syscall/go1_15_syscall_aix_ppc64.go b/stdlib/syscall/go1_15_syscall_aix_ppc64.go index 6e35abaa0..1c62ac7d2 100644 --- a/stdlib/syscall/go1_15_syscall_aix_ppc64.go +++ b/stdlib/syscall/go1_15_syscall_aix_ppc64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_android_386.go b/stdlib/syscall/go1_15_syscall_android_386.go index ad525adc3..80ec7350d 100644 --- a/stdlib/syscall/go1_15_syscall_android_386.go +++ b/stdlib/syscall/go1_15_syscall_android_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package syscall diff --git a/stdlib/syscall/go1_15_syscall_android_amd64.go b/stdlib/syscall/go1_15_syscall_android_amd64.go index 6a236e3d5..3588b9d0c 100644 --- a/stdlib/syscall/go1_15_syscall_android_amd64.go +++ b/stdlib/syscall/go1_15_syscall_android_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package syscall diff --git a/stdlib/syscall/go1_15_syscall_android_arm.go b/stdlib/syscall/go1_15_syscall_android_arm.go index f8eb86692..495bf93af 100644 --- a/stdlib/syscall/go1_15_syscall_android_arm.go +++ b/stdlib/syscall/go1_15_syscall_android_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package syscall diff --git a/stdlib/syscall/go1_15_syscall_android_arm64.go b/stdlib/syscall/go1_15_syscall_android_arm64.go index a5935cb6f..d2ae2df6b 100644 --- a/stdlib/syscall/go1_15_syscall_android_arm64.go +++ b/stdlib/syscall/go1_15_syscall_android_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package syscall diff --git a/stdlib/syscall/go1_15_syscall_darwin_amd64.go b/stdlib/syscall/go1_15_syscall_darwin_amd64.go index 82155a9d6..d44e74105 100644 --- a/stdlib/syscall/go1_15_syscall_darwin_amd64.go +++ b/stdlib/syscall/go1_15_syscall_darwin_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_darwin_arm64.go b/stdlib/syscall/go1_15_syscall_darwin_arm64.go index cfc377a63..c0292b756 100644 --- a/stdlib/syscall/go1_15_syscall_darwin_arm64.go +++ b/stdlib/syscall/go1_15_syscall_darwin_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_dragonfly_amd64.go b/stdlib/syscall/go1_15_syscall_dragonfly_amd64.go index f1c4ea65e..2f9051ca6 100644 --- a/stdlib/syscall/go1_15_syscall_dragonfly_amd64.go +++ b/stdlib/syscall/go1_15_syscall_dragonfly_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_freebsd_386.go b/stdlib/syscall/go1_15_syscall_freebsd_386.go index ae6324dbd..97d26da6c 100644 --- a/stdlib/syscall/go1_15_syscall_freebsd_386.go +++ b/stdlib/syscall/go1_15_syscall_freebsd_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_freebsd_amd64.go b/stdlib/syscall/go1_15_syscall_freebsd_amd64.go index ec72ebf08..e7b68ea1a 100644 --- a/stdlib/syscall/go1_15_syscall_freebsd_amd64.go +++ b/stdlib/syscall/go1_15_syscall_freebsd_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_freebsd_arm.go b/stdlib/syscall/go1_15_syscall_freebsd_arm.go index e02f0b6b8..7263f4392 100644 --- a/stdlib/syscall/go1_15_syscall_freebsd_arm.go +++ b/stdlib/syscall/go1_15_syscall_freebsd_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_freebsd_arm64.go b/stdlib/syscall/go1_15_syscall_freebsd_arm64.go index 4a27f1d1a..73e8133b9 100644 --- a/stdlib/syscall/go1_15_syscall_freebsd_arm64.go +++ b/stdlib/syscall/go1_15_syscall_freebsd_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_illumos_amd64.go b/stdlib/syscall/go1_15_syscall_illumos_amd64.go index db41bc93e..4e994a154 100644 --- a/stdlib/syscall/go1_15_syscall_illumos_amd64.go +++ b/stdlib/syscall/go1_15_syscall_illumos_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!solaris +// +build go1.15,!solaris package syscall diff --git a/stdlib/syscall/go1_15_syscall_js_wasm.go b/stdlib/syscall/go1_15_syscall_js_wasm.go index 5ac67941f..33a790c4d 100644 --- a/stdlib/syscall/go1_15_syscall_js_wasm.go +++ b/stdlib/syscall/go1_15_syscall_js_wasm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_386.go b/stdlib/syscall/go1_15_syscall_linux_386.go index fe8d9ebe5..22a75491e 100644 --- a/stdlib/syscall/go1_15_syscall_linux_386.go +++ b/stdlib/syscall/go1_15_syscall_linux_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_amd64.go b/stdlib/syscall/go1_15_syscall_linux_amd64.go index 3bdd6fcd6..f496114a9 100644 --- a/stdlib/syscall/go1_15_syscall_linux_amd64.go +++ b/stdlib/syscall/go1_15_syscall_linux_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_arm.go b/stdlib/syscall/go1_15_syscall_linux_arm.go index 118a12dcb..0549984f4 100644 --- a/stdlib/syscall/go1_15_syscall_linux_arm.go +++ b/stdlib/syscall/go1_15_syscall_linux_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_arm64.go b/stdlib/syscall/go1_15_syscall_linux_arm64.go index 288beedeb..1d433bf45 100644 --- a/stdlib/syscall/go1_15_syscall_linux_arm64.go +++ b/stdlib/syscall/go1_15_syscall_linux_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_mips.go b/stdlib/syscall/go1_15_syscall_linux_mips.go index 112f8f3e8..378cdb2dc 100644 --- a/stdlib/syscall/go1_15_syscall_linux_mips.go +++ b/stdlib/syscall/go1_15_syscall_linux_mips.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_mips64.go b/stdlib/syscall/go1_15_syscall_linux_mips64.go index 7a960a0dd..61ec0d30d 100644 --- a/stdlib/syscall/go1_15_syscall_linux_mips64.go +++ b/stdlib/syscall/go1_15_syscall_linux_mips64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_mips64le.go b/stdlib/syscall/go1_15_syscall_linux_mips64le.go index 7a960a0dd..61ec0d30d 100644 --- a/stdlib/syscall/go1_15_syscall_linux_mips64le.go +++ b/stdlib/syscall/go1_15_syscall_linux_mips64le.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_mipsle.go b/stdlib/syscall/go1_15_syscall_linux_mipsle.go index 112f8f3e8..378cdb2dc 100644 --- a/stdlib/syscall/go1_15_syscall_linux_mipsle.go +++ b/stdlib/syscall/go1_15_syscall_linux_mipsle.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_ppc64.go b/stdlib/syscall/go1_15_syscall_linux_ppc64.go index 711b54cfa..57d3f7d0f 100644 --- a/stdlib/syscall/go1_15_syscall_linux_ppc64.go +++ b/stdlib/syscall/go1_15_syscall_linux_ppc64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_ppc64le.go b/stdlib/syscall/go1_15_syscall_linux_ppc64le.go index a05febcdf..34b0b38d2 100644 --- a/stdlib/syscall/go1_15_syscall_linux_ppc64le.go +++ b/stdlib/syscall/go1_15_syscall_linux_ppc64le.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_riscv64.go b/stdlib/syscall/go1_15_syscall_linux_riscv64.go index 5daa378c9..bf664a30a 100644 --- a/stdlib/syscall/go1_15_syscall_linux_riscv64.go +++ b/stdlib/syscall/go1_15_syscall_linux_riscv64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_linux_s390x.go b/stdlib/syscall/go1_15_syscall_linux_s390x.go index 330a92c61..55802ee2c 100644 --- a/stdlib/syscall/go1_15_syscall_linux_s390x.go +++ b/stdlib/syscall/go1_15_syscall_linux_s390x.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_netbsd_386.go b/stdlib/syscall/go1_15_syscall_netbsd_386.go index 4a023248e..d6b6a7dcc 100644 --- a/stdlib/syscall/go1_15_syscall_netbsd_386.go +++ b/stdlib/syscall/go1_15_syscall_netbsd_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_netbsd_amd64.go b/stdlib/syscall/go1_15_syscall_netbsd_amd64.go index 0df2c2784..72028d897 100644 --- a/stdlib/syscall/go1_15_syscall_netbsd_amd64.go +++ b/stdlib/syscall/go1_15_syscall_netbsd_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_netbsd_arm.go b/stdlib/syscall/go1_15_syscall_netbsd_arm.go index b7ee3aea6..31377b436 100644 --- a/stdlib/syscall/go1_15_syscall_netbsd_arm.go +++ b/stdlib/syscall/go1_15_syscall_netbsd_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_netbsd_arm64.go b/stdlib/syscall/go1_15_syscall_netbsd_arm64.go index 0df2c2784..72028d897 100644 --- a/stdlib/syscall/go1_15_syscall_netbsd_arm64.go +++ b/stdlib/syscall/go1_15_syscall_netbsd_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_openbsd_386.go b/stdlib/syscall/go1_15_syscall_openbsd_386.go index fc08055fd..70ba1d61a 100644 --- a/stdlib/syscall/go1_15_syscall_openbsd_386.go +++ b/stdlib/syscall/go1_15_syscall_openbsd_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_openbsd_amd64.go b/stdlib/syscall/go1_15_syscall_openbsd_amd64.go index 8bd8d90c8..b8fcc0b14 100644 --- a/stdlib/syscall/go1_15_syscall_openbsd_amd64.go +++ b/stdlib/syscall/go1_15_syscall_openbsd_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_openbsd_arm.go b/stdlib/syscall/go1_15_syscall_openbsd_arm.go index 505c716de..c6bd21564 100644 --- a/stdlib/syscall/go1_15_syscall_openbsd_arm.go +++ b/stdlib/syscall/go1_15_syscall_openbsd_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_openbsd_arm64.go b/stdlib/syscall/go1_15_syscall_openbsd_arm64.go index ef02f443d..493afc2aa 100644 --- a/stdlib/syscall/go1_15_syscall_openbsd_arm64.go +++ b/stdlib/syscall/go1_15_syscall_openbsd_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_plan9_386.go b/stdlib/syscall/go1_15_syscall_plan9_386.go index f78a690b2..2f8ed91a6 100644 --- a/stdlib/syscall/go1_15_syscall_plan9_386.go +++ b/stdlib/syscall/go1_15_syscall_plan9_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_plan9_amd64.go b/stdlib/syscall/go1_15_syscall_plan9_amd64.go index f78a690b2..2f8ed91a6 100644 --- a/stdlib/syscall/go1_15_syscall_plan9_amd64.go +++ b/stdlib/syscall/go1_15_syscall_plan9_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_plan9_arm.go b/stdlib/syscall/go1_15_syscall_plan9_arm.go index f78a690b2..2f8ed91a6 100644 --- a/stdlib/syscall/go1_15_syscall_plan9_arm.go +++ b/stdlib/syscall/go1_15_syscall_plan9_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_solaris_amd64.go b/stdlib/syscall/go1_15_syscall_solaris_amd64.go index 54daca516..e93d3fe3d 100644 --- a/stdlib/syscall/go1_15_syscall_solaris_amd64.go +++ b/stdlib/syscall/go1_15_syscall_solaris_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_windows_386.go b/stdlib/syscall/go1_15_syscall_windows_386.go index 00bf31ce0..0aea9d77c 100644 --- a/stdlib/syscall/go1_15_syscall_windows_386.go +++ b/stdlib/syscall/go1_15_syscall_windows_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_windows_amd64.go b/stdlib/syscall/go1_15_syscall_windows_amd64.go index 00bf31ce0..0aea9d77c 100644 --- a/stdlib/syscall/go1_15_syscall_windows_amd64.go +++ b/stdlib/syscall/go1_15_syscall_windows_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/go1_15_syscall_windows_arm.go b/stdlib/syscall/go1_15_syscall_windows_arm.go index 00bf31ce0..0aea9d77c 100644 --- a/stdlib/syscall/go1_15_syscall_windows_arm.go +++ b/stdlib/syscall/go1_15_syscall_windows_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package syscall diff --git a/stdlib/syscall/syscall.go b/stdlib/syscall/syscall.go index b7b0f7963..9c68e5f08 100644 --- a/stdlib/syscall/syscall.go +++ b/stdlib/syscall/syscall.go @@ -1,4 +1,4 @@ -// +build go1.14,!go1.16 +// +build go1.14 // Package syscall provide wrapper of standard library syscall package for native import in Yaegi. package syscall diff --git a/stdlib/unrestricted/go1_15_syscall_aix_ppc64.go b/stdlib/unrestricted/go1_15_syscall_aix_ppc64.go index 7036c7795..2b1be0926 100644 --- a/stdlib/unrestricted/go1_15_syscall_aix_ppc64.go +++ b/stdlib/unrestricted/go1_15_syscall_aix_ppc64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_android_386.go b/stdlib/unrestricted/go1_15_syscall_android_386.go index 89004b005..3f23b4144 100644 --- a/stdlib/unrestricted/go1_15_syscall_android_386.go +++ b/stdlib/unrestricted/go1_15_syscall_android_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_android_amd64.go b/stdlib/unrestricted/go1_15_syscall_android_amd64.go index 89004b005..3f23b4144 100644 --- a/stdlib/unrestricted/go1_15_syscall_android_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_android_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_android_arm.go b/stdlib/unrestricted/go1_15_syscall_android_arm.go index 89004b005..3f23b4144 100644 --- a/stdlib/unrestricted/go1_15_syscall_android_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_android_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_android_arm64.go b/stdlib/unrestricted/go1_15_syscall_android_arm64.go index 89004b005..3f23b4144 100644 --- a/stdlib/unrestricted/go1_15_syscall_android_arm64.go +++ b/stdlib/unrestricted/go1_15_syscall_android_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!linux +// +build go1.15,!linux package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_darwin_amd64.go b/stdlib/unrestricted/go1_15_syscall_darwin_amd64.go index 45dee3c8c..d79755369 100644 --- a/stdlib/unrestricted/go1_15_syscall_darwin_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_darwin_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_darwin_arm64.go b/stdlib/unrestricted/go1_15_syscall_darwin_arm64.go index 45dee3c8c..d79755369 100644 --- a/stdlib/unrestricted/go1_15_syscall_darwin_arm64.go +++ b/stdlib/unrestricted/go1_15_syscall_darwin_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_dragonfly_amd64.go b/stdlib/unrestricted/go1_15_syscall_dragonfly_amd64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_dragonfly_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_dragonfly_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_freebsd_386.go b/stdlib/unrestricted/go1_15_syscall_freebsd_386.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_freebsd_386.go +++ b/stdlib/unrestricted/go1_15_syscall_freebsd_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_freebsd_amd64.go b/stdlib/unrestricted/go1_15_syscall_freebsd_amd64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_freebsd_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_freebsd_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_freebsd_arm.go b/stdlib/unrestricted/go1_15_syscall_freebsd_arm.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_freebsd_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_freebsd_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_freebsd_arm64.go b/stdlib/unrestricted/go1_15_syscall_freebsd_arm64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_freebsd_arm64.go +++ b/stdlib/unrestricted/go1_15_syscall_freebsd_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_illumos_amd64.go b/stdlib/unrestricted/go1_15_syscall_illumos_amd64.go index 27e2ec745..e8a76186a 100644 --- a/stdlib/unrestricted/go1_15_syscall_illumos_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_illumos_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16,!solaris +// +build go1.15,!solaris package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_js_wasm.go b/stdlib/unrestricted/go1_15_syscall_js_wasm.go index 704d5ff45..10763850a 100644 --- a/stdlib/unrestricted/go1_15_syscall_js_wasm.go +++ b/stdlib/unrestricted/go1_15_syscall_js_wasm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_386.go b/stdlib/unrestricted/go1_15_syscall_linux_386.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_386.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_amd64.go b/stdlib/unrestricted/go1_15_syscall_linux_amd64.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_arm.go b/stdlib/unrestricted/go1_15_syscall_linux_arm.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_arm64.go b/stdlib/unrestricted/go1_15_syscall_linux_arm64.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_arm64.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_mips.go b/stdlib/unrestricted/go1_15_syscall_linux_mips.go index 64347731e..431f17a7f 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_mips.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_mips.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_mips64.go b/stdlib/unrestricted/go1_15_syscall_linux_mips64.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_mips64.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_mips64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_mips64le.go b/stdlib/unrestricted/go1_15_syscall_linux_mips64le.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_mips64le.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_mips64le.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_mipsle.go b/stdlib/unrestricted/go1_15_syscall_linux_mipsle.go index 64347731e..431f17a7f 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_mipsle.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_mipsle.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_ppc64.go b/stdlib/unrestricted/go1_15_syscall_linux_ppc64.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_ppc64.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_ppc64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_ppc64le.go b/stdlib/unrestricted/go1_15_syscall_linux_ppc64le.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_ppc64le.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_ppc64le.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_riscv64.go b/stdlib/unrestricted/go1_15_syscall_linux_riscv64.go index 2017b0226..d5df9296d 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_riscv64.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_riscv64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_linux_s390x.go b/stdlib/unrestricted/go1_15_syscall_linux_s390x.go index e99451029..f52ba95cc 100644 --- a/stdlib/unrestricted/go1_15_syscall_linux_s390x.go +++ b/stdlib/unrestricted/go1_15_syscall_linux_s390x.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_netbsd_386.go b/stdlib/unrestricted/go1_15_syscall_netbsd_386.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_netbsd_386.go +++ b/stdlib/unrestricted/go1_15_syscall_netbsd_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_netbsd_amd64.go b/stdlib/unrestricted/go1_15_syscall_netbsd_amd64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_netbsd_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_netbsd_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_netbsd_arm.go b/stdlib/unrestricted/go1_15_syscall_netbsd_arm.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_netbsd_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_netbsd_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_netbsd_arm64.go b/stdlib/unrestricted/go1_15_syscall_netbsd_arm64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_netbsd_arm64.go +++ b/stdlib/unrestricted/go1_15_syscall_netbsd_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_openbsd_386.go b/stdlib/unrestricted/go1_15_syscall_openbsd_386.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_openbsd_386.go +++ b/stdlib/unrestricted/go1_15_syscall_openbsd_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_openbsd_amd64.go b/stdlib/unrestricted/go1_15_syscall_openbsd_amd64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_openbsd_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_openbsd_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_openbsd_arm.go b/stdlib/unrestricted/go1_15_syscall_openbsd_arm.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_openbsd_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_openbsd_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_openbsd_arm64.go b/stdlib/unrestricted/go1_15_syscall_openbsd_arm64.go index aaffca7aa..521280244 100644 --- a/stdlib/unrestricted/go1_15_syscall_openbsd_arm64.go +++ b/stdlib/unrestricted/go1_15_syscall_openbsd_arm64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_plan9_386.go b/stdlib/unrestricted/go1_15_syscall_plan9_386.go index 566fefc2c..00c9f0e0e 100644 --- a/stdlib/unrestricted/go1_15_syscall_plan9_386.go +++ b/stdlib/unrestricted/go1_15_syscall_plan9_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_plan9_amd64.go b/stdlib/unrestricted/go1_15_syscall_plan9_amd64.go index 566fefc2c..00c9f0e0e 100644 --- a/stdlib/unrestricted/go1_15_syscall_plan9_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_plan9_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_plan9_arm.go b/stdlib/unrestricted/go1_15_syscall_plan9_arm.go index 566fefc2c..00c9f0e0e 100644 --- a/stdlib/unrestricted/go1_15_syscall_plan9_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_plan9_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_solaris_amd64.go b/stdlib/unrestricted/go1_15_syscall_solaris_amd64.go index beab21f32..5703a0d06 100644 --- a/stdlib/unrestricted/go1_15_syscall_solaris_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_solaris_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_windows_386.go b/stdlib/unrestricted/go1_15_syscall_windows_386.go index fd255d23d..4f13e713a 100644 --- a/stdlib/unrestricted/go1_15_syscall_windows_386.go +++ b/stdlib/unrestricted/go1_15_syscall_windows_386.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_windows_amd64.go b/stdlib/unrestricted/go1_15_syscall_windows_amd64.go index fd255d23d..4f13e713a 100644 --- a/stdlib/unrestricted/go1_15_syscall_windows_amd64.go +++ b/stdlib/unrestricted/go1_15_syscall_windows_amd64.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unrestricted/go1_15_syscall_windows_arm.go b/stdlib/unrestricted/go1_15_syscall_windows_arm.go index fd255d23d..4f13e713a 100644 --- a/stdlib/unrestricted/go1_15_syscall_windows_arm.go +++ b/stdlib/unrestricted/go1_15_syscall_windows_arm.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract syscall'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unrestricted diff --git a/stdlib/unsafe/go1_15_unsafe.go b/stdlib/unsafe/go1_15_unsafe.go index 693a84a9f..55bce645e 100644 --- a/stdlib/unsafe/go1_15_unsafe.go +++ b/stdlib/unsafe/go1_15_unsafe.go @@ -1,6 +1,6 @@ // Code generated by 'yaegi extract unsafe'. DO NOT EDIT. -// +build go1.15,!go1.16 +// +build go1.15 package unsafe diff --git a/stdlib/unsafe/unsafe.go b/stdlib/unsafe/unsafe.go index 833905422..ecde1c438 100644 --- a/stdlib/unsafe/unsafe.go +++ b/stdlib/unsafe/unsafe.go @@ -1,4 +1,4 @@ -// +build go1.14,!go1.16 +// +build go1.14 // Package unsafe provides wrapper of standard library unsafe package to be imported natively in Yaegi. package unsafe