Files
openide/java/java-tests/testData/codeInsight/typing/equalAfterBitwiseOp2_after.java
Tagir Valeev ec21ef9436 [java-completion] IDEA-246986 Fixes according to review IDEA-CR-65611
1. Honor SPACE_WITHIN_PARENTHESES setting
2. Some cheap lexer checks to avoid document commit when unnecessary

GitOrigin-RevId: 168e521a4f59d294d09098a05d7fa276501cf2ba
2020-07-31 07:58:09 +00:00

5 lines
91 B
Java

public class Foo {
void test(int x) {
if((x|0x1F)!=0x1F && ( x|0x38 )!=<caret>)
}
}