-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spec allows consecutive colons in symbols and keywords #68
Comments
A sample code to reproduce the issue: (clojure.edn/read-string (pr-str (into {} [[(keyword "a::b") "a"]])))
|
An even crazier example which is also somehow related: (clojure.edn/read-string (pr-str (into {} [[(keyword "a b c") "a"]])))
|
In reply to the comment by @raszi ... For those that are surprised or perhaps confused by the example from @raszi that shows how Clarifying the
|
EDN spec does not say that consecutive colons are illegal (e.g.
a::b
) even though clojure.reader and clojure.edn won't parse these.(What is the reason for this restriction?)
The text was updated successfully, but these errors were encountered: