Reflection warning, meander/util/epsilon.cljc:714:24 - reference to field val can't be resolved.
AFAICT this is the only remaining warning as of the latest release.TBH I’m not sure how to get rid of this one. I’m gonna bug the guy who added the code. 🙂
Shouldn't this work?
(m/rewrite '[:a b c 1 2]
[:a . (m/pred symbol? !xs) ... !rest ...]
[!xs ...])Or this?
(m/rewrite '[:a b c 1 2]
[:a . (m/pred symbol? !xs) ... & ?rest]
[!xs ...])