Re: Groovy as a JVM-less Bash-Script/Perl/Python alternative ?

2020-08-06 Thread Paolo Di Tommaso
I maintain a quite popular project for scientific data analysis pipelines and, yes, both startup time and memory footprint are usually reported as two minor but annoying groovy drawbacks. Being able to run Groovy on GraalVM would surely bring massive impro

StaticPropertyAccessHelper transforms are not routed through my expression transformer

2020-08-06 Thread Saravanan Palanichamy
Hello My class derives from ClassCodeExpressionTransformer and I use it to transform my method call expression. Lets say I add an extra parameter to these methods. This works for normal expression, however for property setter expressions, this does not work because it does not route through my

RE: StaticPropertyAccessHelper transforms are not routed through my expression transformer

2020-08-06 Thread Milles, Eric (TR Technology)
Your assessment appears correct. PropertyExpression works like this: public Expression transformExpression(ExpressionTransformer transformer) { PropertyExpression ret = new PropertyExpression(transformer.transform(objectExpression), transformer.transform(property), safe); PoppingMet

Re: Groovy as a JVM-less Bash-Script/Perl/Python alternative ?

2020-08-06 Thread Jochen Theodorou
On 06.08.20 12:35, Paolo Di Tommaso wrote: [...] I saw almost no interest in this community on the possibility to have a groovy interpreter/compiled based on the new Truffle subsystem , which it has already proved to be able to deliver a minima