DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=31649>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=31649

[Patch] Flowscript: Switch to re-implementation of official Rhino





------- Additional Comments From [EMAIL PROTECTED]  2004-10-20 12:28 -------
You mean this.continuation in JS?

In principle this should call the following Java code:

public FOM_WebContinuation jsGet_continuation() {
    // FIXME: This method can return invalid continuation! Is it OK to do so?
    xxx currentCall.getLastContinuation();
}

Is it possible to run the test cases with jsGet_continuation modified as:

public FOM_WebContinuation jsGet_continuation() {
    // FIXME: This method can return invalid continuation! Is it OK to do so?
    FOM_WebContinuation result = currentCall.getLastContinuation();
    print_result_somehow
    return result;
}

and see if the method is actually ever return null? If not, then it is a clear
Rhino bug. If yes, then is it possible to see where the null comes from?

Also if anybody can comment on those comments about invalid continuation, it
would be helpfull...

Reply via email to