From: chiba <do-...@jb...> - 2006-06-27 18:47:03
|
Implementing this spec. would be tricky. Because: | test.array[5] = 10; | is compiled into: | long[] a = test.array; | a[5] = 10; | It would be difficult to recognize "a" is "test.array" when Javassist transforms "a[5] = 10". View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953807#3953807 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953807 |