File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change 638
638
(let [ups-deps (cljsc/get-upstream-deps )
639
639
{:keys [analyze-path repl-verbose warn-on-undeclared special-fns static-fns] :as opts
640
640
:or {warn-on-undeclared true }}
641
- (assoc (merge (-repl-options repl-env) opts)
642
- :init init
643
- :need-prompt prompt
644
- :flush flush
645
- :read read
646
- :print print
647
- :caught caught
648
- :reader reader
649
- :print-no-newline print-no-newline
650
- :source-map-inline source-map-inline
651
- :ups-libs (:libs ups-deps)
652
- :ups-foreign-libs (:foreign-libs ups-deps))]
641
+ (merge
642
+ {:cache-analysis true }
643
+ (assoc (merge (-repl-options repl-env) opts)
644
+ :init init
645
+ :need-prompt prompt
646
+ :flush flush
647
+ :read read
648
+ :print print
649
+ :caught caught
650
+ :reader reader
651
+ :print-no-newline print-no-newline
652
+ :source-map-inline source-map-inline
653
+ :ups-libs (:libs ups-deps)
654
+ :ups-foreign-libs (:foreign-libs ups-deps)))]
653
655
(env/with-compiler-env
654
656
(or (::env/compiler repl-env) (env/default-compiler-env opts ))
655
657
(binding [ana/*cljs-ns* 'cljs.user
You can’t perform that action at this time.
0 commit comments