mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
correctly suggest protected methods after Xxx.super.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class BarImpl extends foo.Bar {
|
||||
{
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
BarImpl.super.fo<caret>
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class BarImpl extends foo.Bar {
|
||||
{
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
BarImpl.super.foo();<caret>
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user