File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 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
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}
You can’t perform that action at this time.
0 commit comments