Fork me on GitHub
#cljs-dev
<
2018-12-20
>
mfikes00:12:10

Interestingly (range) returns something that statically satisfies counted? (which doesn’t make it right—just a little more challenging to fix)

borkdude10:12:15

ok, yeah:

Clojure 1.10.0
user=> (counted? (range))
false
user=> (counted? (range 1 10))
true

borkdude14:12:58

While writing a spec for next, I came across this error: https://dev.clojure.org/jira/browse/CLJS-3023

borkdude19:12:42

So far I haven’t been able to see why it’s happening. Maybe because next is used a lot by spec internally

borkdude19:12:58

Not sure what is so specific about next. E.g. instrumenting rest and seq works.

richiardiandrea21:12:37

I have a question regarding the code base, I am trying to move the special-doc-map from src/main/clojure/cljs/repl.cljc to src/main/cljs/cljs/repl.cljs but I keep getting a cljs.repl/special-doc-map not found error while launching script/repljs

richiardiandrea21:12:13

I wondering if the are on the classpath or I am doing something wrong

richiardiandrea21:12:42

the goal being able to see special-doc-map in cljs - not macro - in the cljs.repl namespace