mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
all possible class names should be a valid lookup strings when completing an inner class after new
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
public class JavaClass {
|
||||
{
|
||||
Outer.Boo b = new Outer.Boo();<caret>
|
||||
}
|
||||
}
|
||||
|
||||
class Outer {
|
||||
static class Boo { }
|
||||
}
|
||||
|
||||
|
||||
class ABooImpl extends Outer.Boo { }
|
||||
@@ -0,0 +1,12 @@
|
||||
public class JavaClass {
|
||||
{
|
||||
Outer.Boo b = new B<caret>
|
||||
}
|
||||
}
|
||||
|
||||
class Outer {
|
||||
static class Boo { }
|
||||
}
|
||||
|
||||
|
||||
class ABooImpl extends Outer.Boo { }
|
||||
Reference in New Issue
Block a user