How does the Groovy compiler work? -
can explain groovy compiler works? compile:
groovy code -> java code -> bytecode
groovy code -> bytecode
some other method
groovy parses source code antlr via groovy grammar description, generates bytecode using asm
it not require javac
Comments
Post a Comment