Gabriel Mattar

Results 4 comments of Gabriel Mattar

> Another use-case for us is we have a few Java methods that return `List`. These don’t seem to behave quite right in JavaScript without wrapping with `ProxyArray.fromList()`, and even...

Any updates on this matter? @mikethayes any suggestions on dealing with this sort of necessity? At our project we had full control over method output convertion using Rhino and as...

Sure! @chumer We used some internal rhino classes as a base to our implementation, such as [this one to emulate a java class](https://github.com/mozilla/rhino/blob/master/src/org/mozilla/javascript/NativeJavaClass.java) and [this one to emulate java objects...

Actually I managed to enable the use of the new operator with the following signature: ```java public class JavaClassProxy extends JavaObjectProxy implements ProxyInstantiable { ``` For now we're problably sticking...