LispReader allows namespaced maps, tagged literals and anonymous arguments to sneak in calls to readers that read to no value

Description

Some readers (namespaced maps, tagged literals, anonymous arguments) allow reads that return nothing to “sneak” into the middle of these forms. Reads that return nothing include:

  • line comments starting with ; or #!

  • discard #_

  • reader conditional #? or #?@ with no matching feature

Furthermore, once a non-returning read has occurred, regular whitespace may then be read again too.

Namespaced map example (this reads as #:foo{:bar :baz} ):

Tagged literal example:

Anonymous argument: - moved this issue to CLJ-2813

Approach:

Extract the body from the read loop to expose a new readSome method that returns either a form or the reader (indicating no value has been read). For namespaced maps and tagged literals, use readSome() instead of read() and fail if nothing read. nil is a valid return so the reader value is used as a sentintel.

For anonymous function arguments, moved to (modify reader approach to use regex).

Patch:

clj-2160-4.patch

Environment

None

Attachments

5

Activity

Show:

Jarrod Taylor November 17, 2023 at 3:52 PM

Added clj-2160-5.patch containing tests covering the namespaced map and tagged literal examples. The tagged literal test is still failing.

Alex Miller November 15, 2023 at 7:03 PM

Split anonymous arg changes out into and posted new patch without that, attribution retained. Need to add tests for all of these cases.

Noah Bogart September 8, 2023 at 8:16 PM

I saw that the attached patch clj2160-2.patch would no longer apply cleanly to master. I’ve redone the patch, retaining attribution and attached it as CLJ-2160-no-op-macros.patch. Tests pass cleanly, as well as checked against a large number of community libraries (with ).

Christophe Grand April 25, 2017 at 1:35 PM

clj2160-2 is clj2160 + two redundant checks that were not removed

Christophe Grand April 25, 2017 at 12:31 PM

The patch extracts the body from the read loop to expose a readSome method that returns either a form or the reader (if no valued form has been read starting at the current position).
This patch also adds a regex pattern to validate anonymous args.

Details

Assignee

Reporter

Labels

Approval

Vetted

Patch

Code

Priority

Affects versions

Created April 25, 2017 at 12:17 PM
Updated January 25, 2024 at 1:44 AM