Skip to content

Commit c016667

Browse files
Fix #93.
Changes tuple comparision from a roundabout string comparision to use proper subtype comparision. Also adjusts test cases to avoid triggering type alias printing such as `Array{T,1}` to `Vector{T}` which fails on Julia 1.6.
1 parent 254ba1c commit c016667

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/abbreviations.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,9 @@ function format(::TypedMethodSignatures, buf, doc)
384384
# ideally we would check that the method signature matches the Tuple{...} signature
385385
# but that is not straightforward because of how expressive Julia can be
386386
if Sys.iswindows()
387-
t = tuples[findlast(t -> t isa DataType && string(t.name) == "Tuple" && length(t.types) == N, tuples)]
387+
t = tuples[findlast(t -> t isa DataType && t <: Tuple && length(t.types) == N, tuples)]
388388
else
389-
t = tuples[findfirst(t -> t isa DataType && string(t.name) == "Tuple" && length(t.types) == N, tuples)]
389+
t = tuples[findfirst(t -> t isa DataType && t <: Tuple && length(t.types) == N, tuples)]
390390
end
391391
printmethod(buf, binding, func, method, t)
392392
println(buf)

test/TestModule/M.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ g(x = 1, y = 2, z = 3; kwargs...) = x
88

99
h(x::Int, y::Int = 2, z::Int = 3; kwargs...) = x
1010

11-
const A{T} = Union{Vector{T}, Matrix{T}}
11+
const A{T} = Union{Array{T, 3}, Array{T, 4}}
1212

1313
h_1(x::A) = x
1414
h_2(x::A{Int}) = x
@@ -29,7 +29,7 @@ k_3(x, y::T, z::U) where {T, U} = x + y + z
2929
k_4(::String, ::Int = 0) = nothing
3030
k_5(::Type{T}, x::String, func::Union{Nothing, Function} = nothing) where T <: Number = x
3131
k_6(x::Vector{T}) where T <: Number = x
32-
k_7(x::Union{T,Nothing}, y::T = zero(T)) where {T <: Number} = x
32+
k_7(x::Union{T,Nothing}, y::T = zero(T)) where {T <: Integer} = x
3333
k_8(x) = x
3434
k_9(x::T where T<:Any) = x
3535
k_10(x::T) where T = x

test/tests.jl

+7-7
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,9 @@ end
188188
str = String(take!(buf))
189189
@test occursin("\n```julia\n", str)
190190
if Sys.iswindows()
191-
@test occursin("h_1(x::Union{Array{T,2}, Array{T,1}} where T) -> Union{Array{T,2}, Array{T,1}} where T", str)
191+
@test occursin("h_1(x::Union{Array{T,4}, Array{T,3}} where T) -> Union{Array{T,4}, Array{T,3}} where T", str)
192192
else
193-
@test occursin("h_1(x::Union{Array{T,1}, Array{T,2}} where T) -> Union{Array{T,1}, Array{T,2}} where T", str)
193+
@test occursin("h_1(x::Union{Array{T,3}, Array{T,4}} where T) -> Union{Array{T,3}, Array{T,4}} where T", str)
194194
end
195195
@test occursin("\n```\n", str)
196196

@@ -316,14 +316,14 @@ end
316316

317317
doc.data = Dict(
318318
:binding => Docs.Binding(M, :k_7),
319-
:typesig => Union{Tuple{Union{T, Nothing}}, Tuple{Union{T, Nothing}, T}, Tuple{T}} where T <: Number,
319+
:typesig => Union{Tuple{Union{T, Nothing}}, Tuple{Union{T, Nothing}, T}, Tuple{T}} where T <: Integer,
320320
:module => M,
321321
)
322322
DSE.format(DSE.TYPEDSIGNATURES, buf, doc)
323323
str = String(take!(buf))
324324
@test occursin("\n```julia\n", str)
325-
@test occursin("\nk_7(x::Union{Nothing, T<:Number}) -> Union{Nothing, Number}\n", str)
326-
@test occursin("\nk_7(x::Union{Nothing, T<:Number}, y::T<:Number) -> Union{Nothing, T<:Number}\n", str)
325+
@test occursin("\nk_7(x::Union{Nothing, T<:Integer}) -> Union{Nothing, Integer}\n", str)
326+
@test occursin("\nk_7(x::Union{Nothing, T<:Integer}, y::T<:Integer) -> Union{Nothing, T<:Integer}\n", str)
327327
@test occursin("\n```\n", str)
328328

329329
doc.data = Dict(
@@ -553,8 +553,8 @@ end
553553
@test length(DSE.getmethods(M.f, Tuple{})) == 0
554554
@test length(DSE.getmethods(M.f, Union{Tuple{}, Tuple{Any}})) == 1
555555
@test length(DSE.getmethods(M.h_3, Tuple{M.A{Int}})) == 1
556-
@test length(DSE.getmethods(M.h_3, Tuple{Vector{Int}})) == 1
557-
@test length(DSE.getmethods(M.h_3, Tuple{Array{Int, 3}})) == 0
556+
@test length(DSE.getmethods(M.h_3, Tuple{Array{Int, 3}})) == 1
557+
@test length(DSE.getmethods(M.h_3, Tuple{Array{Int, 1}})) == 0
558558
end
559559
@testset "methodgroups" begin
560560
@test length(DSE.methodgroups(M.f, Tuple{Any}, M)) == 1

0 commit comments

Comments
 (0)