We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4e057c commit 7de568fCopy full SHA for 7de568f
1 file changed
src/main/cljs/cljs/reader.clj
@@ -7,13 +7,12 @@
7
;; You must not remove this notice, or any other, from this software.
8
9
(ns cljs.reader
10
- (:require [cljs.env :as env]
11
- [cljs.analyzer :as ana]))
+ (:require [cljs.env :as env]))
12
13
(defmacro add-data-readers [default-readers]
14
(let [data-readers
15
- (->> (get @env/*compiler* ::ana/data-readers)
+ (->> (get @env/*compiler* :cljs.analyzer/data-readers)
16
(map (fn [[k v]]
17
- [(str k) `(fn [x#] (~(vary-meta v assoc ::ana/no-resolve true) x#))]))
+ [(str k) `(fn [x#] (~(vary-meta v assoc :cljs.analyzer/no-resolve true) x#))]))
18
(into {}))]
19
`(do (merge ~default-readers ~data-readers))))
0 commit comments