introduce: allow to provide checks to filter unacceptable expressions before showing them to user (IDEA-100776)

This commit is contained in:
anna
2013-02-11 11:17:43 +01:00
parent 45866a320c
commit 192adb0c4c
9 changed files with 71 additions and 9 deletions
@@ -0,0 +1,6 @@
public class Test {
void foo(Integer i) {
i.compareTo(<caret>1)
}
}
@@ -0,0 +1,8 @@
public class Test {
public static final int xxx = 1;
void foo(Integer i) {
i.compareTo(xxx)
}
}