Skip to content

Commit a7d46c3

Browse files
committed
better methodshow for non-standard identifiers
1 parent 55aeb2f commit a7d46c3

File tree

4 files changed

+62
-17
lines changed

4 files changed

+62
-17
lines changed

base/methodshow.jl

+40-15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
# Method and method table pretty-printing
44

5+
const empty_sym = Symbol("")
6+
function strip_gensym(sym)
7+
if sym === Symbol("#self#") || sym === Symbol("#unused#")
8+
return empty_sym
9+
end
10+
return Symbol(replace(String(sym), r"^(.*)#(.*#)?\d+$" => s"\1"))
11+
end
12+
513
function argtype_decl(env, n, @nospecialize(sig::DataType), i::Int, nargs, isva::Bool) # -> (argname, argtype)
614
t = sig.parameters[i]
715
if i == nargs && isva && !isvarargtype(t)
@@ -10,13 +18,13 @@ function argtype_decl(env, n, @nospecialize(sig::DataType), i::Int, nargs, isva:
1018
if isa(n,Expr)
1119
n = n.args[1] # handle n::T in arg list
1220
end
13-
s = string(n)::String
14-
i = findfirst(isequal('#'), s)
15-
if i !== nothing
16-
s = s[1:prevind(s, i)::Int]
17-
end
18-
if t === Any && !isempty(s)
19-
return s, ""
21+
n = strip_gensym(n)
22+
local s
23+
if n === empty_sym
24+
s = ""
25+
else
26+
s = sprint(show_sym, n)
27+
t === Any && return s, ""
2028
end
2129
if isvarargtype(t)
2230
v1, v2 = nothing, nothing
@@ -73,8 +81,6 @@ function arg_decl_parts(m::Method, html=false)
7381
return tv, decls, file, line
7482
end
7583

76-
const empty_sym = Symbol("")
77-
7884
# NOTE: second argument is deprecated and is no longer used
7985
function kwarg_decl(m::Method, kwtype = nothing)
8086
mt = get_methodtable(m)
@@ -184,6 +190,15 @@ function functionloc(@nospecialize(f))
184190
return functionloc(first(mt))
185191
end
186192

193+
function sym_to_string(sym)
194+
s = String(sym)
195+
if endswith(s, "...")
196+
return string(sprint(show_sym, Symbol(s[1:end-3])), "...")
197+
else
198+
return sprint(show_sym, sym)
199+
end
200+
end
201+
187202
function show(io::IO, m::Method)
188203
tv, decls, file, line = arg_decl_parts(m)
189204
sig = unwrap_unionall(m.sig)
@@ -193,12 +208,16 @@ function show(io::IO, m::Method)
193208
return
194209
end
195210
print(io, decls[1][2], "(")
196-
join(io, String[isempty(d[2]) ? d[1] : d[1]*"::"*d[2] for d in decls[2:end]],
197-
", ", ", ")
211+
join(
212+
io,
213+
String[isempty(d[2]) ? d[1] : string(d[1], "::", d[2]) for d in decls[2:end]],
214+
", ",
215+
", ",
216+
)
198217
kwargs = kwarg_decl(m)
199218
if !isempty(kwargs)
200219
print(io, "; ")
201-
join(io, kwargs, ", ", ", ")
220+
join(io, map(sym_to_string, kwargs), ", ", ", ")
202221
end
203222
print(io, ")")
204223
show_method_params(io, tv)
@@ -339,12 +358,18 @@ function show(io::IO, ::MIME"text/html", m::Method)
339358
return
340359
end
341360
print(io, decls[1][2], "(")
342-
join(io, String[isempty(d[2]) ? d[1] : d[1]*"::<b>"*d[2]*"</b>"
343-
for d in decls[2:end]], ", ", ", ")
361+
join(
362+
io,
363+
String[
364+
isempty(d[2]) ? d[1] : string(d[1], "::<b>", d[2], "</b>") for d in decls[2:end]
365+
],
366+
", ",
367+
", ",
368+
)
344369
kwargs = kwarg_decl(m)
345370
if !isempty(kwargs)
346371
print(io, "; <i>")
347-
join(io, kwargs, ", ", ", ")
372+
join(io, map(sym_to_string, kwargs), ", ", ", ")
348373
print(io, "</i>")
349374
end
350375
print(io, ")")

base/show.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2028,7 +2028,7 @@ function show_signature_function(io::IO, @nospecialize(ft), demangle=false, farg
20282028
if ft <: Function && isa(uw, DataType) && isempty(uw.parameters) &&
20292029
isdefined(uw.name.module, uw.name.mt.name) &&
20302030
ft == typeof(getfield(uw.name.module, uw.name.mt.name))
2031-
print(io, (demangle ? demangle_function_name : identity)(uw.name.mt.name))
2031+
show_sym(io, (demangle ? demangle_function_name : identity)(uw.name.mt.name))
20322032
elseif isa(ft, DataType) && ft.name === Type.body.name &&
20332033
(f = ft.parameters[1]; !isa(f, TypeVar))
20342034
uwf = unwrap_unionall(f)

test/errorshow.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ let err_str,
426426
@test startswith(sprint(show, which(Complex{Int}, Tuple{Int})),
427427
"Complex{T}(")
428428
@test startswith(sprint(show, which(getfield(Base, Symbol("@doc")), Tuple{LineNumberNode, Module, Vararg{Any}})),
429-
"@doc(__source__::LineNumberNode, __module__::Module, x...) in Core at boot.jl:")
429+
"var\"@doc\"(__source__::LineNumberNode, __module__::Module, x...) in Core at boot.jl:")
430430
@test startswith(sprint(show, which(FunctionLike(), Tuple{})),
431431
"(::$(curmod_prefix)FunctionLike)() in $curmod_str at $sp:$(method_defs_lineno + 7)")
432432
@test startswith(sprint(show, which(StructWithUnionAllMethodDefs{<:Integer}, (Any,))),

test/show.jl

+20
Original file line numberDiff line numberDiff line change
@@ -2018,3 +2018,23 @@ end
20182018
@test Base.make_typealias(M37012.AStruct{1}) === nothing
20192019
@test isempty(Base.make_typealiases(M37012.AStruct{1})[1])
20202020
@test string(M37012.AStruct{1}) == "$(curmod_prefix)M37012.AStruct{1}"
2021+
2022+
@testset "method printing with non-standard identifiers" for _show in (
2023+
show,
2024+
(io, x) -> show(io, MIME("text/html"), x),
2025+
)
2026+
@eval var","(x) = x
2027+
@test occursin("var\",\"(x)", sprint(_show, methods(var",")))
2028+
2029+
@eval f1(var"a.b") = 3
2030+
@test occursin("f1(var\"a.b\")", sprint(_show, methods(f1)))
2031+
2032+
@eval f2(; var"123") = 5
2033+
@test occursin("f2(; var\"123\")", sprint(_show, methods(f2)))
2034+
2035+
@eval f3(; var"%!"...) = 7
2036+
@test occursin("f3(; var\"%!\"...)", sprint(_show, methods(f3)))
2037+
2038+
@eval f4(; var"...") = 9
2039+
@test_broken occursin("f4(; var\"...\")", sprint(_show, methods(f4)))
2040+
end

0 commit comments

Comments
 (0)