-
Notifications
You must be signed in to change notification settings - Fork 17.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:golang/go
- Loading branch information
Showing
180 changed files
with
3,820 additions
and
780 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
pkg go/types, const FieldVar = 6 #70250 | ||
pkg go/types, const FieldVar VarKind #70250 | ||
pkg go/types, const LocalVar = 2 #70250 | ||
pkg go/types, const LocalVar VarKind #70250 | ||
pkg go/types, const PackageVar = 1 #70250 | ||
pkg go/types, const PackageVar VarKind #70250 | ||
pkg go/types, const ParamVar = 4 #70250 | ||
pkg go/types, const ParamVar VarKind #70250 | ||
pkg go/types, const RecvVar = 3 #70250 | ||
pkg go/types, const RecvVar VarKind #70250 | ||
pkg go/types, const ResultVar = 5 #70250 | ||
pkg go/types, const ResultVar VarKind #70250 | ||
pkg go/types, method (*Var) Kind() VarKind #70250 | ||
pkg go/types, method (*Var) SetKind(VarKind) #70250 | ||
pkg go/types, method (VarKind) String() string #70250 | ||
pkg go/types, type VarKind uint8 #70250 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
### 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
The hidden and undocumented `Inverse` and `CombinedMult` methods on some [Curve] | ||
implementations have been removed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.