Skip to content

Commit

Permalink
add some precompile statements for REPL
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Sep 20, 2023
1 parent a507122 commit d829a18
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contrib/generate_precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ hardcoded_precompile_statements = """
precompile(Base.__require_prelocked, (Base.PkgId, Nothing))
precompile(Base._require, (Base.PkgId, Nothing))
# REPL
precompile(isequal, (String, String))
precompile(Base.check_open, (Base.TTY,))
precompile(Base.getproperty, (Base.TTY, Symbol))
precompile(write, (Base.TTY, String))
# used by Revise.jl
precompile(Tuple{typeof(Base.parse_cache_header), String})
precompile(Base.read_dependency_src, (String, String))
Expand Down

0 comments on commit d829a18

Please sign in to comment.