We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd23a7 commit 18d2cceCopy full SHA for 18d2cce
src/main/clojure/cljs/analyzer.cljc
@@ -2378,9 +2378,13 @@
2378
(if ^boolean (:quoted? env)
2379
(analyze-list env form)
2380
(let [line (-> form meta :line)
2381
- line (when (nil? line) (:line env))
+ line (if (nil? line)
2382
+ (:line env)
2383
+ line)
2384
col (-> form meta :column)
- col (when (nil? col) (:column env))
2385
+ col (if (nil? col)
2386
+ (:column env)
2387
+ col)
2388
env (assoc env :line line :column col)]
2389
(let [op (first form)]
2390
(when (nil? op)
0 commit comments