mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
Initialize the doc/next directory for the next release by copying the contents of doc/initial into it. For #73829. Change-Id: Ia473d0430043920fc5135844ec6c117eb1b00217 Reviewed-on: https://go-review.googlesource.com/c/go/+/689878 Reviewed-by: Mark Freeman <mark@golang.org> Auto-Submit: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
387 B
387 B
Minor changes to the library
go/types
The Var.Kind method returns an enumeration of type VarKind that
classifies the variable (package-level, local, receiver, parameter,
result, or struct field). See issue #70250.
Callers of NewVar or NewParam are encouraged to call Var.SetKind
to ensure that this attribute is set correctly in all cases.