Details
-
Type:
Defect
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Completed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
-
Environment:This is the behavior on rhino repl, haven't tested on browser
Description
When running the cljs.core/str function with symbols or keywords the output is not the same as in clojure
ClojureScript:cljs.user> (str "hello" :world)
"hello?'world"
The same happens with symbols, it seems the characters used internally for figuring out if a string is a keyword or symbol are not being escaped correctly on the cljs.core/str function.
Attachments
Activity
Roman Gonzalez
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Attachment | CLJS-162.patch [ 10993 ] |
Roman Gonzalez
made changes -
| Attachment | CLJS-162_1.patch [ 10996 ] |
Roman Gonzalez
made changes -
| Attachment | CLJS-162_2.patch [ 10998 ] |
David Nolen
made changes -
| Resolution | Completed [ 1 ] | |
| Status | Open [ 1 ] | Resolved [ 5 ] |
Added check of symbols and keywords on the private cljs.core/str* function