John Krasnay
John Krasnay
`add-missing-libspec` is not sensitive to the language in which the dependency is used. Consider the following. When I select "Add missing 'clojure.string' require" the result is as follows. Ideally, clojure-lsp...
This code throws an UnsupportedOperationException in v0.6.26 (OpenJDK 11.015) ``` (let [d (java.sql.Date. (System/currentTimeMillis))] (fipp/pprint {:foo d})) ``` It works fine on v0.6.25.
``` (deftest reproducer (facts "This correctly fails" {:foo [1 2]} =in=> {:foo [1 3]}) (let [sym :foo] (facts "This should fail, but succeeds" {sym [1 2]} =in=> {sym [1 3]})))...