mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-23 16:27:33 +00:00
Nothing major here, but nothing liable to cause pain to downstreams either. * https://github.com/golang/crypto/compare/v0.26.0...v0.28.0 (there’s a SHA3 fix there but it’s only relevant for 32-bit platforms) * https://github.com/golang/net/compare/v0.28.0...v0.30.0 (mostly http2; route address parsing fix on Darwin) * https://github.com/golang/oauth2/compare/v0.21.0...v0.23.0 (Google license fix) * https://github.com/golang/sys/compare/v0.23.0...v0.26.0 (faster getrandom() on Linux through the vDSO; improved RISC-V support) * https://github.com/golang/term/compare/v0.23.0...v0.25.0 * https://github.com/golang/time/compare/v0.3.0...v0.7.0 (0-limit handling fix in x/time/rate; Google license fix) * https://github.com/golang/tools/compare/v0.24.0...v0.26.0 This doesn’t include golang.org/x/exp; that doesn’t have any relevant changes. There’s an apidiff fix but we always pull in the latest apidiff anyway. Signed-off-by: Stephen Kitt <skitt@redhat.com>
39 lines
1.4 KiB
Go
39 lines
1.4 KiB
Go
// Copyright 2024 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.
|
|
|
|
package aliases
|
|
|
|
import (
|
|
"go/token"
|
|
"go/types"
|
|
)
|
|
|
|
// Package aliases defines backward compatible shims
|
|
// for the types.Alias type representation added in 1.22.
|
|
// This defines placeholders for x/tools until 1.26.
|
|
|
|
// NewAlias creates a new TypeName in Package pkg that
|
|
// is an alias for the type rhs.
|
|
//
|
|
// The enabled parameter determines whether the resulting [TypeName]'s
|
|
// type is an [types.Alias]. Its value must be the result of a call to
|
|
// [Enabled], which computes the effective value of
|
|
// GODEBUG=gotypesalias=... by invoking the type checker. The Enabled
|
|
// function is expensive and should be called once per task (e.g.
|
|
// package import), not once per call to NewAlias.
|
|
//
|
|
// Precondition: enabled || len(tparams)==0.
|
|
// If materialized aliases are disabled, there must not be any type parameters.
|
|
func NewAlias(enabled bool, pos token.Pos, pkg *types.Package, name string, rhs types.Type, tparams []*types.TypeParam) *types.TypeName {
|
|
if enabled {
|
|
tname := types.NewTypeName(pos, pkg, name, nil)
|
|
SetTypeParams(types.NewAlias(tname, rhs), tparams)
|
|
return tname
|
|
}
|
|
if len(tparams) > 0 {
|
|
panic("cannot create an alias with type parameters when gotypesalias is not enabled")
|
|
}
|
|
return types.NewTypeName(pos, pkg, name, rhs)
|
|
}
|