Re: class file too large

2014-10-05 Thread Mayank Jain
I faced the same problem when I had written several midje tests under one facts which had several fact defined in it. One way around is to break your ns into several smaller logical namespaces. That helped. On Sun, Oct 5, 2014 at 9:26 PM, Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: >

Re: class file too large

2014-10-05 Thread Sunil S Nandihalli
Hi Michael, Thanks for the response. You are likely right about that. While none of them actually look very large, The function is built-up using macros. I will cross check if I can split it. I am using PigPen which makes heavy use of macros and due to some of the semantics of how it is able to ha

Re: class file too large

2014-10-05 Thread Michael Klishin
On 5 October 2014 at 15:20:36, Sunil S Nandihalli (sunil.nandiha...@gmail.com) wrote: > I am getting class file too-large errors when I compile the clojure > file. Do you have pointers as to how one can identify the offending > piece of code? You likely have a giant function somewhere. Spli