[JBoss-dev] [Javassist development Forum] - Re: try ... finally

2004-11-04 Thread chiba
Finally, finally clauses have been supported. :)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3853905#3853905

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3853905


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Inconsistency in CtConstructor.getName

2004-11-04 Thread chiba
Thank you.  I fixed this bug.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3853908#3853908

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3853908


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: try ... finally

2004-10-08 Thread chiba
OK, I'll put finally support in my TODO list.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850780#3850780

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850780


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Abount local variables

2004-10-08 Thread chiba
Ah... it's a sort of bug. :

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850782#3850782

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850782


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Abount local variables

2004-10-08 Thread chiba
My excuse is that the code insertd by insertBefore()
is implicitly surrounded by {}.  So the scope of a
local variable in the inserted code is within {}.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850783#3850783

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850783


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Writing method args into file with Javassist

2004-10-08 Thread chiba
Please use a fully qualified name!
i.e. java.io.FileWriter.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850784#3850784

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850784


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Bug in compiler with null

2004-03-09 Thread chiba
The following test code works fine on my machine. :


  | ClassPool pool = ClassPool.getDefault(null);
  | CtClass cc = sloader.makeClass(test2.NullArgTest);
  | CtMethod m1 = CtNewMethod.make(
  | public Object foo(Object[] obj, int idx) throws Throwable { +
  | return null; }, cc);
  | cc.addMethod(m1);
  | CtMethod m2 = CtNewMethod.make(
  |  public void bar() { this.foo(null, 0); }, cc);
  | cc.addMethod(m2);
  | CtMethod m3 = CtNewMethod.make(
  |  public void bar2() { this.foo((Object[])null, 0); }, cc);
  | cc.addMethod(m3);
  | cc.writeFile();
  | 

a 
href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3824933#3824933;View 
the original post/a

a 
href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3824933Reply 
to the post/a


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Bug in compiler with null

2004-03-07 Thread chiba
Really?  What is the signature of foo.someMethod?

a 
href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3824588#3824588;View 
the original post/a

a 
href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3824588Reply 
to the post/a


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Bug in compiler with null

2004-02-29 Thread chiba
The bug was in the code for comparing
argument types and parameter types.
If the parameter type(?) is null type, then
the code misinterpreted the descriptor of
the argument types.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3823479#3823479

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3823479


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Bug in compiler with null

2004-02-28 Thread chiba
I have just fixed this bug and commited
the source.
Thanks.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3823387#3823387

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3823387


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Debugging with Javassist

2004-02-27 Thread chiba
As you might know, CtClass#writeFile() dumps
the contents of the class file.  If you want to
do source-level debugging with the code generated
by Javassist, I have to extend Javassist a bit.

What kind of source-level debugging do your users
want?  Do they want to see inserted code or newly
created class?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3823287#3823287

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3823287


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Bug in compiler with null

2004-02-27 Thread chiba
I will check this.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3823288#3823288

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3823288


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Javassist development Forum] - Re: Debugging with Javassist

2004-02-27 Thread chiba
OK, that's a good (and reasonable) suggestion.
Although I would not be able to implement it
very soon, I definitely put this to my Todo list.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3823312#3823312

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3823312


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development