Skip to content

Commit 2f45051

Browse files
committed
Revert "fix invalidations in REPLCompletions from Static.jl"
This reverts commit c20de56.
1 parent caa893c commit 2f45051

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/REPL/src/REPLCompletions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@ function get_value(sym::Expr, fn)
418418
end
419419
sym.head !== :. && return (nothing, false)
420420
for ex in sym.args
421-
ex, found::Bool = get_value(ex, fn)
421+
ex, found = get_value(ex, fn)
422422
!found && return (nothing, false)
423-
fn, found::Bool = get_value(ex, fn)
423+
fn, found = get_value(ex, fn)
424424
!found && return (nothing, false)
425425
end
426426
return (fn, true)

0 commit comments

Comments
 (0)