eastwood

Lukas Domagala 2022-01-03T18:22:36.001700Z

I’m having trouble getting my orchard PR through eastwood because of a reflection warning in:

(proxy [clojure.lang.DynamicClassLoader] [@clojure.lang.Compiler/LOADER]
      (defineClass
        ([name bytes src]
         (swap! classbytes assoc name bytes)
         (proxy-super defineClass name bytes src))))
even putting :reflection {’orchard.xref true} into the project.clj eastwood config doesn’t seem to help. Am I doing something wrong here?

vemv 2022-01-03T19:06:59.001800Z

ah I noticed that one PR. Can you push your attempt? So that I can see the failure

Lukas Domagala 2022-01-03T19:09:31.002Z

sure. it’s my first time using eastwood so I’m confident its my fault :)

Lukas Domagala 2022-01-03T19:14:12.002200Z

its pushed

vemv 2022-01-03T19:18:07.002400Z

needs a :ignored-faults {} wrapping example https://github.com/clojure-emacs/cider-nrepl/blob/6dc9654fac1586adc1c43280e1d98074ff1a8dc0/project.clj#L149-L150

Lukas Domagala 2022-01-03T19:25:55.002700Z

ah, thank you!