We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d832e9f commit f03a4d8Copy full SHA for f03a4d8
src/CodeTracking.jl
@@ -114,7 +114,9 @@ Return the signatures of all methods whose definition spans the specified locati
114
Returns `nothing` if there are no methods at that location.
115
"""
116
function signatures_at(filename::AbstractString, line::Integer)
117
- filename = abspath(filename)
+ if !startswith(filename, "REPL[")
118
+ filename = abspath(filename)
119
+ end
120
if occursin(juliabase, filename)
121
rpath = postpath(filename, juliabase)
122
id = PkgId(Base)
0 commit comments