Skip to content

Commit

Permalink
CLJS-1392: cljs.repl/source regression
Browse files Browse the repository at this point in the history
  • Loading branch information
dnolen committed Aug 5, 2015
1 parent fbd23a7 commit 18d2cce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/clojure/cljs/analyzer.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -2378,9 +2378,13 @@
(if ^boolean (:quoted? env)
(analyze-list env form)
(let [line (-> form meta :line)
line (when (nil? line) (:line env))
line (if (nil? line)
(:line env)
line)
col (-> form meta :column)
col (when (nil? col) (:column env))
col (if (nil? col)
(:column env)
col)
env (assoc env :line line :column col)]
(let [op (first form)]
(when (nil? op)
Expand Down

0 comments on commit 18d2cce

Please sign in to comment.