Welcome! Please see the About page for a little more info on how this works.

0 votes
in Syntax and reader by

Attach "character start" and "character end" to the meta information of read forms produced by clojure.lang.EdnReader and clojure.lang.LispReader.
This will allows for better code inspection by linters for example. Currently only line number and column are attached to the meta information.

2 Answers

0 votes
by

Comment made by: jafingerhut

I am not certain, but perhaps the EDN and regular reader in the tools.reader contrib library already do what you want here? That is, besides :line and :column metadata, they also have :end-line and :end-column metadata for the end of the expression.

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1513 (reported by alex+import)
...