Skip to content

Commit 446ddaa

Browse files
Fix regression in atrepl
Docs attached to numbers weren't being found. Finding docs for specific methods using the syntax help?> f(::Int) wasn't being recognised due to changes in how `gen_call_with_extracted_types` generated an error when it failed. (Previously the error was thrown by the function, but is now returned as an `:(error("..."))` expression.)
1 parent ba135b2 commit 446ddaa

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

base/docs/utils.jl

+5-4
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,14 @@ repl(ex::Expr) = isregex(ex) ? :(apropos($ex)) : _repl(ex)
126126

127127
repl(str::AbstractString) = :(apropos($str))
128128

129-
repl(other) = nothing
129+
repl(other) = :(@doc $(esc(other)))
130130

131131
function _repl(x)
132132
docs = :(@doc $(esc(x)))
133-
try
134-
# Handles function call syntax where each argument is a symbol.
135-
isexpr(x, :call) && (docs = Base.gen_call_with_extracted_types(doc, x))
133+
if isexpr(x, :call)
134+
# Handles function call syntax where each argument is an atom (symbol, number, etc.)
135+
t = Base.gen_call_with_extracted_types(doc, x)
136+
(isexpr(t, :call, 3) && t.args[1] == doc) && (docs = t)
136137
end
137138
if isfield(x)
138139
quote

test/docs.jl

+7
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,13 @@ f12593_2() = 1
411411
# test that macro documentation works
412412
@test (Docs.@repl @assert) !== nothing
413413

414+
@test (Docs.@repl 0) !== nothing
415+
416+
let t = @doc(DocsTest.t(::Int, ::Int))
417+
@test docstrings_equal(Docs.@repl(DocsTest.t(0, 0)), t)
418+
@test docstrings_equal(Docs.@repl(DocsTest.t(::Int, ::Int)), t)
419+
end
420+
414421
# Issue #13467.
415422
@test (Docs.@repl @r_str) !== nothing
416423

0 commit comments

Comments
 (0)