mirror of https://github.com/golang/go.git
11 lines
387 B
Markdown
11 lines
387 B
Markdown
### Minor changes to the library {#minor_library_changes}
|
|
|
|
#### 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.
|