mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
introduce: allow to provide checks to filter unacceptable expressions before showing them to user (IDEA-100776)
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
public class Test {
|
||||
|
||||
void foo(Integer i) {
|
||||
i.compareTo(<caret>1)
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Test {
|
||||
|
||||
public static final int xxx = 1;
|
||||
|
||||
void foo(Integer i) {
|
||||
i.compareTo(xxx)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user