File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 386
386
(evaluate-form repl-env env filename form wrap *repl-opts*))
387
387
([repl-env env filename form wrap opts]
388
388
(binding [ana/*cljs-file* filename]
389
- (let [ast (ana/analyze env form opts)
389
+ (let [ast (ana/analyze env form nil opts)
390
390
js (comp/emit-str ast)
391
391
wrap-js
392
392
; ; TODO: check opts as well - David
398
398
(let [js (comp/emit-str
399
399
(ana/no-warn
400
400
(ana/analyze (assoc env :repl-env repl-env)
401
- (wrap form) opts)))
401
+ (wrap form) nil opts)))
402
402
t (System/currentTimeMillis )]
403
403
(str js
404
404
" \n //# sourceURL=repl-" t " .js"
418
418
(comp/emit-str
419
419
(ana/no-warn
420
420
(ana/analyze (assoc env :repl-env repl-env)
421
- (wrap form) opts))))]
421
+ (wrap form) nil opts))))]
422
422
(when (= (:op ast) :ns )
423
423
(load-dependencies repl-env
424
424
(into (vals (:requires ast))
You can’t perform that action at this time.
0 commit comments