don't show some java keywords in some java places, but show some keywords in some other places (e.g. IDEA-58589)

This commit is contained in:
peter
2010-10-28 21:19:20 +04:00
parent 3dba6e4cd6
commit 0c2c5511bd
7 changed files with 77 additions and 31 deletions
@@ -0,0 +1,15 @@
import java.util.ArrayList;
public class Test {
{
Runnable runnable = new Runnable() {
public void run() {
for (StringBuffer <caret> : new ArrayList<StringBuffer>()) {
}
}
};
}
}