File tree 4 files changed +22
-0
lines changed
clj/resources/indent-test-cases
4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 9
9
{:foo {:bar 1 } ; Default.
10
10
; ; Foo bar! {
11
11
:biz {:as 123 , :asdf #{1 2 3 }}}
12
+
13
+ (comment
14
+ {:foo {:bar 1 } ; Default.
15
+ ; ; Foo bar! {
16
+ :biz {:as 123 , :asdf #{1 2 3 }}}
17
+ )
Original file line number Diff line number Diff line change 9
9
{:foo {:bar 1 } ; Default.
10
10
; ; Foo bar! {
11
11
:biz {:as 123 , :asdf #{1 2 3 }}}
12
+
13
+ (comment
14
+ {:foo {:bar 1 } ; Default.
15
+ ; ; Foo bar! {
16
+ :biz {:as 123 , :asdf #{1 2 3 }}}
17
+ )
Original file line number Diff line number Diff line change
1
+ (defn- insert!
2
+ ^Map [^Map ^String k ^Object v]
3
+ (if (.putIfAbsent m k v)
4
+ (recur m (str \@ k) v)
5
+ m))
Original file line number Diff line number Diff line change
1
+ (defn- insert!
2
+ ^Map [^Map ^String k ^Object v]
3
+ (if (.putIfAbsent m k v)
4
+ (recur m (str \@ k) v)
5
+ m))
You can’t perform that action at this time.
0 commit comments