You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailscale/cmd/viewer/tests
Nick Khyl a9dc6e07ad util/codegen, cmd/cloner, cmd/viewer: update codegen.LookupMethod to support alias type nodes
Go 1.23 updates the go/types package to produce Alias type nodes for type aliases, unless disabled with gotypesalias=0.
This new default behavior breaks codegen.LookupMethod, which uses checked type assertions to types.Named and
types.Interface, as only named types and interfaces have methods.

In this PR, we update codegen.LookupMethod to perform method lookup on the right-hand side of the alias declaration
and clearly switch on the supported type nodes types. We also improve support for various edge cases, such as when an alias
is used as a type parameter constraint, and add tests for the LookupMethod function.

Additionally, we update cmd/viewer/tests to include types with aliases used in type fields and generic type constraints.

Updates #13224
Updates #12912

Signed-off-by: Nick Khyl <nickk@tailscale.com>
4 weeks ago
..
tests.go util/codegen, cmd/cloner, cmd/viewer: update codegen.LookupMethod to support alias type nodes 4 weeks ago
tests_clone.go util/codegen, cmd/cloner, cmd/viewer: update codegen.LookupMethod to support alias type nodes 4 weeks ago
tests_view.go util/codegen, cmd/cloner, cmd/viewer: update codegen.LookupMethod to support alias type nodes 4 weeks ago