You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One line of java code may require more than one byteCode to execute.
For example, trace node 10 correspond to the java code:
int c = a+b;
The correspondence byteCode are:
iload_2
iload_3
iadd
istore_4
which have four byteCode.
However, the current getByteCode method only return the first byteCodeiload_2. Is it possible to concatenate those byteCode by comma, such that the getByteCode() method will return iload_2,iload_3,iadd,istore_4?
Also, it seems that trace node 5 return empty string with unknown reason (please refer to the following picture).
Here is the complete byte code:
Thank you.
The text was updated successfully, but these errors were encountered:
Missing ByteCode
One line of java code may require more than one byteCode to execute.
For example, trace node 10 correspond to the java code:
The correspondence byteCode are:
which have four byteCode.
However, the current getByteCode method only return the first byteCode
iload_2
. Is it possible to concatenate those byteCode by comma, such that thegetByteCode()
method will returniload_2,iload_3,iadd,istore_4
?Also, it seems that trace node 5 return empty string with unknown reason (please refer to the following picture).
Here is the complete byte code:
Thank you.
The text was updated successfully, but these errors were encountered: