File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/clojure/clojure/tools/analyzer Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 128
128
(maybe-class-literal sym-ns))] ; ; Class/field
129
129
(let [opname (name form)]
130
130
(if (and (= (count opname) 1 )
131
- (Character/isDigit (first opname)))
131
+ (Character/isDigit (char ( first opname) )))
132
132
form ; ; Array/<n>
133
133
(with-meta (list '. target (symbol (str " -" opname))) ; ; transform to (. Class -field)
134
134
(meta form))))
Original file line number Diff line number Diff line change 96
96
(defn maybe-array-class-sym [x]
97
97
(let [sname (name x)]
98
98
(if-let [c (and (= (count sname) 1 )
99
- (Character/isDigit (first sname))
99
+ (Character/isDigit (char ( first sname) ))
100
100
(namespace x))]
101
101
(when-let [c (or (specials c)
102
102
(maybe-class-from-string c))]
You can’t perform that action at this time.
0 commit comments