Skip to content

Commit a5c5773

Browse files
committed
remove redundant require
1 parent 8fe9d6f commit a5c5773

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/sci/impl/interpreter.cljc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
[sci.ctx-store :as store]
77
[sci.impl.analyzer :as ana]
88
[sci.impl.opts :as opts]
9-
[sci.impl.parser :as p]
9+
[sci.impl.parser :as parser]
1010
[sci.impl.types :as types]
1111
[sci.impl.utils :as utils]
12-
[sci.impl.vars :as vars]
13-
[sci.impl.parser :as parser]))
12+
[sci.impl.vars :as vars]))
1413

1514
#?(:clj (set! *warn-on-reflection* true))
1615

@@ -80,8 +79,8 @@
8079
(let [reader (r/indexing-push-back-reader (r/string-push-back-reader s))
8180
eval-string+? (when opts (:sci.impl/eval-string+ opts))]
8281
(loop [ret nil]
83-
(let [expr (p/parse-next ctx reader)]
84-
(if (utils/kw-identical? p/eof expr)
82+
(let [expr (parser/parse-next ctx reader)]
83+
(if (utils/kw-identical? parser/eof expr)
8584
(if eval-string+?
8685
{:val ret
8786
:ns @utils/current-ns}

0 commit comments

Comments
 (0)