mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
std,cmd: go fix -any std cmd
This change mechanically replaces all occurrences of interface{}
by 'any' (where deemed safe by the 'any' modernizer) throughout
std and cmd, minus their vendor trees.
Since this fix is relatively numerous, it gets its own CL.
Also, 'go generate go/types'.
Change-Id: I14a6b52856c3291c1d27935409bca8d5fd4242a2
Reviewed-on: https://go-review.googlesource.com/c/go/+/719702
Commit-Queue: Alan Donovan <adonovan@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Alan Donovan <adonovan@google.com>
This commit is contained in:
parent
2263d4aabd
commit
4bfc3a9d14
99 changed files with 282 additions and 284 deletions
|
|
@ -50,12 +50,12 @@ func (s *scanner) init(src io.Reader, errh func(line, col uint, msg string), mod
|
|||
}
|
||||
|
||||
// errorf reports an error at the most recently read character position.
|
||||
func (s *scanner) errorf(format string, args ...interface{}) {
|
||||
func (s *scanner) errorf(format string, args ...any) {
|
||||
s.error(fmt.Sprintf(format, args...))
|
||||
}
|
||||
|
||||
// errorAtf reports an error at a byte column offset relative to the current token start.
|
||||
func (s *scanner) errorAtf(offset int, format string, args ...interface{}) {
|
||||
func (s *scanner) errorAtf(offset int, format string, args ...any) {
|
||||
s.errh(s.line, s.col+uint(offset), fmt.Sprintf(format, args...))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue