File tree Expand file tree Collapse file tree 3 files changed +55
-0
lines changed Expand file tree Collapse file tree 3 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ (let [x (fn [y] 1 )]
2+ (->> " ola"
3+ (x )))
4+
5+ (letfn [(x [y] 1 )]
6+ (->> " ola"
7+ (x )))
8+
9+
10+ (->> " ola"
11+ (x ))
12+
13+ (defn foo []
14+ (letfn [(x [y] 1 )]
15+ (->> " ola"
16+ (x ))))
17+
18+ (letfn [(twice [x]
19+ (* x 2 ))
20+ (six-times [y]
21+ (* (twice y) 3 ))]
22+ (println " Twice 15 =" (twice 15 ))
23+ (println " Six times 15 =" (six-times 15 )))
24+
25+ ; ; vim:ft=clojure:
Original file line number Diff line number Diff line change 1+ (let [x (fn [y] 1 )]
2+ (->> " ola"
3+ (x )))
4+
5+ (letfn [(x [y] 1 )]
6+ (->> " ola"
7+ (x )))
8+
9+
10+ (->> " ola"
11+ (x ))
12+
13+ (defn foo []
14+ (letfn [(x [y] 1 )]
15+ (->> " ola"
16+ (x ))))
17+
18+ (letfn [(twice [x]
19+ (* x 2 ))
20+ (six-times [y]
21+ (* (twice y) 3 ))]
22+ (println " Twice 15 =" (twice 15 ))
23+ (println " Six times 15 =" (six-times 15 )))
24+
25+ ; ; vim:ft=clojure:
Original file line number Diff line number Diff line change 3333 (test-indent " dispatch macro indentation is handled correctly"
3434 :in " test-dispatch-macro-indent.in"
3535 :out " test-dispatch-macro-indent.out" ))
36+
37+ (deftest test-special-case-indent
38+ (test-indent " special case indentation is handled correctly"
39+ :in " test-special-case-indent.in"
40+ :out " test-special-case-indent.out" ))
You can’t perform that action at this time.
0 commit comments