-
The purpose of this issue is to announce potential changes to tree-sitter-clojure to any interested parties [1]. Our intent is to do this by adding a comment to this issue for each such change (or se…
-
This might be related to #48, but I'm not sure. I was running into a problem where my code kept hitting an OutOfMemory error when it was compiling with `lein run`` (in my IDE, I instead got an error …
-
Currently clojure functions compile to either classes or functions.
Here I propose we get rid of emitting Dart functions and always compile to classes because:
* Dart overcaptures https://github.c…
-
There seems to be a race between closing a chime and the chiming function invocation that can lead to a `java.lang.InterruptedException` being thrown when functions are awaiting something coming from,…
dazld updated
3 years ago
-
This might be related to #65
Case:
- hedge.edn with 10 functions.
- one core.cljs with the 10 handlers
- the function handlers are stubs (mainly one-liners that return a constant value or a s…
-
# destructure
``` clojure
(destructure '[[x y & others] v])
=>
[vec__13737 v
x (nth vec__13737 0 nil)
y (nth vec__13737 1 nil)
others (nthnext vec__13737 2)]
```
- Shows how destructuring behaves
…
-
(type (sample-exp 1))
=> java.lang.Double
(type (sample-uniform 1))
=> clojure.lang.LazySeq
if ever I want a uniform I need to extract the first element. Would be nice if this were consistent ac…
-
Some of the functions in monger are using deprecated calls on the mongo java API
For example, the get-db function on line 117 in src/clojure/monger/core.clj uses getDB which is deprecated http://ap…
-
I see this output from kibit:
```
[null] Consider:
warn
instead of:
#(warn %)
```
However taking kibit's advice results in the following compile error:
```
Can't take value of a macro: #'clojur…
-
Tried writing a little transformer that was going to use `update-vals`, but it seems to be missing from Jet!
Similar story to other functions added in Clojure 1.11 such as `update-keys`, `parse-lon…