You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dbFuncName is not correct for generic methods and their instantiations. It is currently returning just the name of the type without type parameters, completely skipping the method name.
For a type Foo[...] and its method Bar, we should generate the name Foo.Bar.
The text was updated successfully, but these errors were encountered:
These should not include the type parameter/argument.
Updates golang/go#63535
Change-Id: Iaae0e587d365f7e26e2361c9814fa1d288d8ad86
Reviewed-on: https://go-review.googlesource.com/c/vuln/+/548016
TryBot-Result: Gopher Robot <gobot@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Run-TryBot: Zvonimir Pavlinovic <zpavlinovic@google.com>
Reviewed-by: Maceo Thompson <maceothompson@google.com>
dbFuncName
is not correct for generic methods and their instantiations. It is currently returning just the name of the type without type parameters, completely skipping the method name.For a type
Foo[...]
and its methodBar
, we should generate the nameFoo.Bar
.The text was updated successfully, but these errors were encountered: