Re: Clojure DSL & JVM method length limits

2009-01-08 Thread rossjudson
Isn't there a (roughly) 64k limit on the bytecode for any given method? There's definitely some kind of JVM limit. RJ On Jan 7, 12:12 am, Michiel de Mare wrote: > I'm converting a Ruby DSL into Clojure, and I'm running into some > problems. I keep getting errors like this one: > > java.lang.Cla

Re: Clojure DSL & JVM method length limits

2009-01-06 Thread Christophe Grand
Michiel de Mare a écrit : > I'm converting a Ruby DSL into Clojure, and I'm running into some > problems. I keep getting errors like this one: > > java.lang.ClassFormatError: Invalid method Code length 91069 in class > file ... > > The DSL is a simple one - basically a long list of short forms. As