Currently we only support the backwards-compatible way to spell unpacking a variadic type var Unpack[Ts], but we don't support the 3.11+ syntax of *Ts.
This should be a fairly straightforward change, we just need to start visiting ast.Starred inside type annotations.
Currently we only support the backwards-compatible way to spell unpacking a variadic type var
Unpack[Ts]
, but we don't support the 3.11+ syntax of*Ts
.This should be a fairly straightforward change, we just need to start visiting
ast.Starred
inside type annotations.