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 128128 (maybe-class-literal sym-ns))] ; ; Class/field
129129 (let [opname (name form)]
130130 (if (and (= (count opname) 1 )
131- (Character/isDigit (first opname)))
131+ (Character/isDigit (char ( first opname) )))
132132 form ; ; Array/<n>
133133 (with-meta (list '. target (symbol (str " -" opname))) ; ; transform to (. Class -field)
134134 (meta form))))
Original file line number Diff line number Diff line change 9696(defn maybe-array-class-sym [x]
9797 (let [sname (name x)]
9898 (if-let [c (and (= (count sname) 1 )
99- (Character/isDigit (first sname))
99+ (Character/isDigit (char ( first sname) ))
100100 (namespace x))]
101101 (when-let [c (or (specials c)
102102 (maybe-class-from-string c))]
You can’t perform that action at this time.
0 commit comments