On Sat, Oct 2, 2010 at 10:04 AM, Jochen Theodorou <[email protected]> wrote: > runtime class mirors means what? Parsing the jars and class files?
Yes, just like javac loads classes into an internal "mirror " representation, that's what you would need to do in Groovy. Mirah's compiler also does this, since it's sketchy to load classes via reflection just to do compiles. In Mirah it's all implemented in Ruby in the Bitescript library, but you could perhaps start with what's in ASM (I'm not familiar with it) or the reflection stuff pulled out for APT that's now hosted here: https://aptmirrorapi.dev.java.net/ - Charlie -- You received this message because you are subscribed to the Google Groups "JVM Languages" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jvm-languages?hl=en.
