Hello, those days, I have tried to develpoe a tool based on JaCoCo, I just want to get more information about branch coverage of java bytecode, I don't care which branch have been passed and which not. What I want to konw is that in a condtion like if(condition1&&condition2) , It's not necessary that if condition1 = true and condition2 = flase pass or not, But I want to know, in the four branch ( TT TF FT FF ) corresponding to ( A B C D ), We have four orderd condtion( a b c d ) which is not one-to-one with (ABCD), Their order is determined according to the analysis program. I want to know that if condition (a) have been passed or not. Can I analyze the probe array to get the branch coverage information? I am not sure about it. If you have an idea about how to do it, I will be very grateful, I am looking forward to your early reply, Thank you very much!!!