Re: [jexl] array literal syntax + varargs

2007-10-12 Thread peter royal
On Oct 12, 2007, at 6:31 AM, Rahul Akolkar wrote: On 10/12/07, peter royal <[EMAIL PROTECTED]> wrote: howdy jexl users! i just added support for declaring arrays into the grammer. [ 'foo', 'bar' ] gets turned into new Object[]{"foo","bar"} now (of course, you can use any valid expression for yo

Re: [jexl] array literal syntax + varargs

2007-10-12 Thread Rahul Akolkar
On 10/12/07, peter royal <[EMAIL PROTECTED]> wrote: > howdy jexl users! > > i just added support for declaring arrays into the grammer. [ 'foo', > 'bar' ] gets turned into new Object[]{"foo","bar"} now (of course, > you can use any valid expression for your array items) > > i've also updated the in

[jexl] array literal syntax + varargs

2007-10-11 Thread peter royal
howdy jexl users! i just added support for declaring arrays into the grammer. [ 'foo', 'bar' ] gets turned into new Object[]{"foo","bar"} now (of course, you can use any valid expression for your array items) i've also updated the introspection/uberspect code with the latest from velocity