8 Feb 00:46
Problem with visitLineNumber()
theUser BL <theuserbl <at> hotmail.com>
2012-02-07 23:46:08 GMT
2012-02-07 23:46:08 GMT
Hi!
This is my test-program:
------------------------------------
public class TestProgram {
int GlobalVaribale1 = 5;
double GlobalVariable2 = 14.3;
public static void rectangle(int left, int right, int width, int height) {
// calculate something
int result = 5;
int tmp;
result=left+width;
tmp=width+height;
result *= tmp;
System.out.println("The result is: " + result);
}
}
-------------------------------------
compiled with ASM and decompiled with ASMifier and added some debug-information myself, it looks like
(Continue reading)
RSS Feed