Return-Path: Delivered-To: apmail-cocoon-dev-archive@www.apache.org Received: (qmail 99213 invoked from network); 31 May 2004 18:24:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 31 May 2004 18:24:10 -0000 Received: (qmail 24599 invoked by uid 500); 31 May 2004 18:24:08 -0000 Delivered-To: apmail-cocoon-dev-archive@cocoon.apache.org Received: (qmail 24514 invoked by uid 500); 31 May 2004 18:24:07 -0000 Mailing-List: contact dev-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@cocoon.apache.org Delivered-To: mailing list dev@cocoon.apache.org Received: (qmail 24499 invoked by uid 99); 31 May 2004 18:24:07 -0000 Received: from [192.18.33.10] (HELO exchange.sun.com) (192.18.33.10) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 31 May 2004 11:24:07 -0700 Received: (qmail 16882 invoked by uid 50); 31 May 2004 18:25:04 -0000 Date: 31 May 2004 18:25:04 -0000 Message-ID: <20040531182504.16881.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: dev@cocoon.apache.org Cc: Subject: DO NOT REPLY [Bug 29308] - issue with javaflow continuations X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . 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=29308 issue with javaflow continuations ------- Additional Comments From dustbin777@yahoo.com 2004-05-31 18:25 ------- If i make the class FooInner as Inner class, then there is a definite difference. Then too, the junit test case fails. C:\>jad -p tmp_org.apache.cocoon.components.flow.java.test.SimpleFlow>SimpleFlow .java.inner JavaClassFileReadException: can't open input file on `SimpleFlow$FooInner.class' Couldn't fully decompile method foo Couldn't fully decompile method run Couldn't fully decompile method testNew Couldn't fully decompile method testCatch Couldn't resolve all exception handlers in method testCatch Overlapped try statements detected. Not all exception handlers will be resolved in the method testFinally Couldn't fully decompile method testFinally Couldn't resolve all exception handlers in method testFinally Couldn't fully decompile method testAbstract Couldn't fully decompile method testDelegate C:\>diff SimpleFlow.java.inner SimpleFlow.java.public 15c15 < // AbstractSimpleFlow, CalculatorFlow --- > // AbstractSimpleFlow, FooInner, CalculatorFlow 20,22d19 < /* member class not found */ < class FooInner {} < 114d110 < this; 120,123c116 < continuationstack; < JVM INSTR swap ; < pushObject(); < return new FooInner((SimpleFlow)continuationstack.popObject(), continu ationstack.popInt(), continuationstack.popInt()); --- > return new FooInner(continuationstack.popInt(), continuationstack.popI nt()); C:\> I am attaching the generated code as attachment next.