Skip to content

Commit 8a2291e

Browse files
committed
don't rewrite ~ @ to ~@
1 parent fb8eb22 commit 8a2291e

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/zprint/zprint.cljc

+6-1
Original file line numberDiff line numberDiff line change
@@ -8909,7 +8909,12 @@
89098909
(zmeta? zloc) (fzprint-meta options indent zloc)
89108910
(prefix-tags (ztag zloc))
89118911
(fzprint-vec* :prefix-tags
8912-
(prefix-tags (ztag zloc))
8912+
(let [tag (ztag zloc)]
8913+
(if (and (= :deref tag)
8914+
(z/left* zloc)
8915+
(= :unquote (some-> (z/up* zloc) ztag)))
8916+
" @"
8917+
(prefix-tags tag)))
89138918
""
89148919
; Pick up the :indent-only?, :respect-nl?, and
89158920
; respect-bl? config from :list. Note that the

test/zprint/zprint_test.cljc

+16-1
Original file line numberDiff line numberDiff line change
@@ -3379,12 +3379,27 @@
33793379
(expect "'(a b c)" (zprint-str "'(a b c)" {:parse-string? true}))
33803380
(expect "`(a b c)" (zprint-str "`(a b c)" {:parse-string? true}))
33813381
(expect "~(a b c)" (zprint-str "~(a b c)" {:parse-string? true}))
3382-
(expect "~@(a b c)" (zprint-str "~@(a b c)" {:parse-string? true}))
33833382
(expect "@(a b c)" (zprint-str "@(a b c)" {:parse-string? true}))
33843383
(expect "#'thisisatest" (zprint-str "#'thisisatest" {:parse-string? true}))
33853384
(expect "#_(a b c)" (zprint-str "#_(a b c)" {:parse-string? true}))
33863385
(expect "#_#_(a b c) d" (zprint-str "#_#_(a b c) d" {:parse-string? true}))
33873386

3387+
;; unquote deref vs unquote-splicing
3388+
(expect "(clojure.core/unquote (clojure.core/deref (a b c)))"
3389+
(zprint-str '~ @(a b c) {}))
3390+
(expect "(clojure.core/unquote-splicing (a b c))"
3391+
(zprint-str '~@(a b c) {}))
3392+
(expect "~(deref a)" (zprint-str "~(deref a)" {:parse-string? true}))
3393+
(expect "~(clojure.core/deref a)" (zprint-str "~(clojure.core/deref a)" {:parse-string? true}))
3394+
(expect "~;;comment\n @(a b c)" (zprint-str "~;;comment\n@(a b c)" {:parse-string? true}))
3395+
(expect "~@(a b c)" (zprint-str "~@(a b c)" {:parse-string? true}))
3396+
(expect "~ @(a b c)" (zprint-str "~ @(a b c)" {:parse-string? true}))
3397+
(expect "~ @(a b c)" (zprint-str "~ @(a b c)" {:parse-string? true}))
3398+
(expect "~ @(a b c)" (zprint-str "~ @(a b c)" {:parse-string? true}))
3399+
(expect "~#_@(a b c) a" (zprint-str "~#_@(a b c)a" {:parse-string? true}))
3400+
(expect "~#_a @(a b c)" (zprint-str "~#_a@(a b c)" {:parse-string? true}))
3401+
(expect "[#_a @(a b c)]" (zprint-str "[#_a@(a b c)]" {:parse-string? true}))
3402+
33883403
;;
33893404
;; These try for the indents
33903405
;;

0 commit comments

Comments
 (0)