]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/cgo: drop pre-1.18 support
authorIan Lance Taylor <iant@golang.org>
Sun, 2 Nov 2025 04:34:53 +0000 (21:34 -0700)
committerGopher Robot <gobot@golang.org>
Tue, 4 Nov 2025 20:41:19 +0000 (12:41 -0800)
Now that the bootstrap compiler is 1.24, it's no longer needed.

Change-Id: I9b3d6b7176af10fbc580173d50130120b542e7f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/717060
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

src/cmd/cgo/ast.go
src/cmd/cgo/ast_go1.go [deleted file]
src/cmd/cgo/ast_go118.go [deleted file]

index 861479db7acf5bf499baaccf0f061d056f17ec1b..97b18cd22d4d4c08c5acd99da54fcc58ce30336c 100644 (file)
@@ -363,7 +363,8 @@ func (f *File) walk(x interface{}, context astContext, visit func(*File, interfa
 
        // everything else just recurs
        default:
-               f.walkUnexpected(x, context, visit)
+               error_(token.NoPos, "unexpected type %T in walk", x)
+               panic("unexpected type")
 
        case nil:
 
@@ -396,6 +397,9 @@ func (f *File) walk(x interface{}, context astContext, visit func(*File, interfa
        case *ast.IndexExpr:
                f.walk(&n.X, ctxExpr, visit)
                f.walk(&n.Index, ctxExpr, visit)
+       case *ast.IndexListExpr:
+               f.walk(&n.X, ctxExpr, visit)
+               f.walk(n.Indices, ctxExpr, visit)
        case *ast.SliceExpr:
                f.walk(&n.X, ctxExpr, visit)
                if n.Low != nil {
@@ -434,8 +438,8 @@ func (f *File) walk(x interface{}, context astContext, visit func(*File, interfa
        case *ast.StructType:
                f.walk(n.Fields, ctxField, visit)
        case *ast.FuncType:
-               if tparams := funcTypeTypeParams(n); tparams != nil {
-                       f.walk(tparams, ctxParam, visit)
+               if n.TypeParams != nil {
+                       f.walk(n.TypeParams, ctxParam, visit)
                }
                f.walk(n.Params, ctxParam, visit)
                if n.Results != nil {
@@ -524,8 +528,8 @@ func (f *File) walk(x interface{}, context astContext, visit func(*File, interfa
                        f.walk(n.Values, ctxExpr, visit)
                }
        case *ast.TypeSpec:
-               if tparams := typeSpecTypeParams(n); tparams != nil {
-                       f.walk(tparams, ctxParam, visit)
+               if n.TypeParams != nil {
+                       f.walk(n.TypeParams, ctxParam, visit)
                }
                f.walk(&n.Type, ctxType, visit)
 
diff --git a/src/cmd/cgo/ast_go1.go b/src/cmd/cgo/ast_go1.go
deleted file mode 100644 (file)
index 2f65f0f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2021 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-//go:build compiler_bootstrap
-
-package main
-
-import (
-       "go/ast"
-       "go/token"
-)
-
-func (f *File) walkUnexpected(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
-       error_(token.NoPos, "unexpected type %T in walk", x)
-       panic("unexpected type")
-}
-
-func funcTypeTypeParams(n *ast.FuncType) *ast.FieldList {
-       return nil
-}
-
-func typeSpecTypeParams(n *ast.TypeSpec) *ast.FieldList {
-       return nil
-}
diff --git a/src/cmd/cgo/ast_go118.go b/src/cmd/cgo/ast_go118.go
deleted file mode 100644 (file)
index ced3072..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2021 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-//go:build !compiler_bootstrap
-
-package main
-
-import (
-       "go/ast"
-       "go/token"
-)
-
-func (f *File) walkUnexpected(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
-       switch n := x.(type) {
-       default:
-               error_(token.NoPos, "unexpected type %T in walk", x)
-               panic("unexpected type")
-
-       case *ast.IndexListExpr:
-               f.walk(&n.X, ctxExpr, visit)
-               f.walk(n.Indices, ctxExpr, visit)
-       }
-}
-
-func funcTypeTypeParams(n *ast.FuncType) *ast.FieldList {
-       return n.TypeParams
-}
-
-func typeSpecTypeParams(n *ast.TypeSpec) *ast.FieldList {
-       return n.TypeParams
-}