We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1925124 commit eddadecCopy full SHA for eddadec
stdlib/REPL/src/REPLCompletions.jl
@@ -384,6 +384,7 @@ function get_value(sym::Expr, fn)
384
end
385
get_value(sym::Symbol, fn) = isdefined(fn, sym) ? (getfield(fn, sym), true) : (nothing, false)
386
get_value(sym::QuoteNode, fn) = isdefined(fn, sym.value) ? (getfield(fn, sym.value), true) : (nothing, false)
387
+get_value(sym::GlobalRef, fn) = get_value(sym.name, sym.mod)
388
get_value(sym, fn) = (sym, true)
389
390
# Return the value of a getfield call expression
@@ -456,6 +457,11 @@ function get_type(sym::Expr, fn::Module)
456
457
# try to analyze nests of calls. if this fails, try using the expanded form.
458
val, found = try_get_type(sym, fn)
459
found && return val, found
460
+ # https://github.com/JuliaLang/julia/issues/27184
461
+ if isexpr(sym, :macrocall)
462
+ _, found = get_type(first(sym.args), fn)
463
+ found || return Any, false
464
+ end
465
return try_get_type(Meta.lower(fn, sym), fn)
466
467
stdlib/REPL/test/replcompletions.jl
@@ -1109,3 +1109,10 @@ let s = "test_dict[\"ab"
1109
c, r = test_complete_context(s)
1110
@test c == Any["\"abc\"", "\"abcd\""]
1111
1112
+
1113
+# https://github.com/JuliaLang/julia/issues/27184
1114
+let
1115
+ (test_complete("@noexist."); @test true)
1116
+ (test_complete("Main.@noexist."); @test true)
1117
+ (test_complete("@Main.noexist."); @test true)
1118
+end
0 commit comments