Re: printing the proper array values

2008-02-04 Thread Rhino user
On Jan 31, 11:48 am, Norris Boyd <[EMAIL PROTECTED]> wrote: > On Jan 31, 10:39 am, Rhino user <[EMAIL PROTECTED]> wrote: > > > > > My Java Function returns an array of objects. > > In the javascript what I do is assign this array to another property. > > e.g. > > field.getColor() return an array [

Re: Rhino Tests

2008-02-04 Thread Ahmed Ashour
Dear Norris, I used to be with 'ant' for a very long time, as it is beneficial for fine-grained control. However, as projects need mostly the same features, maven has been built. Quick link to its benefits can be found in http://maven.apache.org/benefits-of-using-maven.html. But, as Rhino

Re: Compiler Question

2008-02-04 Thread Edwin S. Ramirez
Just wanted to give an update on this for the group. I was able to load the Rhino 1.7RC1 into an Oracle database (Java 1.4). As well as the compiled javascript classes and use as stored procedures (functions). Thanks for all your help. -Edwin S. Ramirez- Norris Boyd wrote: > On Feb 1, 11:29

Re: Rhino Tests

2008-02-04 Thread Norris Boyd
On Feb 4, 9:32 am, Ahmed Ashour <[EMAIL PROTECTED]> wrote: > Dear Norris, > > Thanks a lot for fixing this. > > Another thing, where is the test cases folder? So a patch can be easily > committed. The .js tests are in mozilla/js/tests, a sibling to the Rhino directory since these tests are shared

Re: Rhino 1.7R1 release candidate

2008-02-04 Thread Norris Boyd
On Feb 3, 12:24 pm, Ahmed Ashour <[EMAIL PROTECTED]> wrote: > Dear all, > > Another bug athttps://bugzilla.mozilla.org/show_bug.cgi?id=415451. > > Many thanks, > Ahmed- Original Message > From: Norris Boyd <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Sent: Saturday, February 2, 2008 12:04

Re: Rhino Tests

2008-02-04 Thread Ahmed Ashour
Dear Norris, Thanks a lot for fixing this. Another thing, where is the test cases folder? So a patch can be easily committed. Is there any consideration for mavenizing Rhino? Thanks again, Ahmed - Original Message From: Ahmed Ashour <[EMAIL PROTECTED]> To: dev-tech-js-engine-rhino@li

Re: Array.function shortcut

2008-02-04 Thread Norris Boyd
On Feb 2, 2:05 am, Matthieu Riou <[EMAIL PROTECTED]> wrote: > Hi, > > I think I've found a small bug in the Array.function shortcut (instead > of Array.prototype.function.call(...)). Here is the testcase: > > js> var Constr = function() {}; > js> Constr.prototype = []; > js> c = new Constr(); > js>