javalang
javalang copied to clipboard
Can't recognize binary logical operator '!'
Stack with a problem in this code:
class Test {
public static void main(String[] arg) {
int a = 1;
if (time && !(b || c) ) {
a = 1;
}
}
}
javalang didn't see the logical negation of an expression '!(b || c) '. Only demonstrate logical or - ' || '