Skip to content

Commit 74cc50b

Browse files
committed
fix: defensive wrapping for static-field
1 parent 4c81ae6 commit 74cc50b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/clojure/clojure/tools/analyzer/passes/jvm/emit_form.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
(defmethod -emit-form :static-field
125125
[{:keys [class field]} opts]
126-
(symbol (class->str class) (name field)))
126+
`(~(symbol (class->str class) (name field))))
127127

128128
(defmethod -emit-form :static-call
129129
[{:keys [class method args param-tags]} opts]

0 commit comments

Comments
 (0)