Skip to content

Commit 138f824

Browse files
Kenoantoine-levitt
authored andcommitted
Handle Vararg in signature in methodshow
The parameters of `sig` are not guaranteed to match the arguments that were passed on method construction, since the type may have been normalized. This will become more pronounced after JuliaLang#31681, but with OpaqueClosure we now have some method whose sig is Tuple{Vararg{Any}}, so we might as well make this change now. Of course, we may want to print OpaqueClosure methods differently in general, but that's a question for another time, once we've worked out exactly what the sig fields of OpaqueClosure methods should look like.
1 parent 66e19c4 commit 138f824

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

base/methodshow.jl

+11-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@ function strip_gensym(sym)
1111
end
1212

1313
function argtype_decl(env, n, @nospecialize(sig::DataType), i::Int, nargs, isva::Bool) # -> (argname, argtype)
14-
t = sig.parameters[i]
15-
if i == nargs && isva && !isvarargtype(t)
16-
t = Vararg{t,length(sig.parameters)-nargs+1}
14+
t = sig.parameters[unwrapva(min(i, end))]
15+
if i == nargs && isva
16+
va = sig.parameters[end]
17+
if isvarargtype(va) && (!isdefined(va, :N) || !isa(va.N, Int))
18+
t = va
19+
else
20+
ntotal = length(sig.parameters)
21+
isvarargtype(va) && (ntotal += va.N - 1)
22+
t = Vararg{t,ntotal-nargs+1}
23+
end
1724
end
1825
if isa(n,Expr)
1926
n = n.args[1] # handle n::T in arg list
@@ -62,7 +69,7 @@ function arg_decl_parts(m::Method, html=false)
6269
end
6370
decls = Tuple{String,String}[argtype_decl(show_env, argnames[i], sig, i, m.nargs, m.isva)
6471
for i = 1:m.nargs]
65-
decls[1] = ("", sprint(show_signature_function, sig.parameters[1], false, decls[1][1], html,
72+
decls[1] = ("", sprint(show_signature_function, unwrapva(sig.parameters[1]), false, decls[1][1], html,
6673
context = show_env))
6774
else
6875
decls = Tuple{String,String}[("", "") for i = 1:length(sig.parameters::SimpleVector)]

0 commit comments

Comments
 (0)