We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
str
1 parent c6b4b76 commit e58cbb4Copy full SHA for e58cbb4
src/main/cljs/cljs/core.cljs
@@ -10801,7 +10801,7 @@ reduces them without incurring seq initialization"
10801
:else name')]
10802
(if (symbol? name)
10803
(symbol name')
10804
- (str name'))))
+ name')))
10805
10806
(defn- demunge-str [munged-name]
10807
(let [r (js/RegExp. (demunge-pattern) "g")
@@ -10825,7 +10825,7 @@ reduces them without incurring seq initialization"
10825
(let [name' (str name)]
10826
(if (identical? name' "_DOT__DOT_")
10827
".."
10828
- (demunge-str (str name))))))
+ (demunge-str name')))))
10829
10830
;; -----------------------------------------------------------------------------
10831
;; Bootstrap helpers - incompatible with advanced compilation
0 commit comments