mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
constructor completion: insert the chosen constructor and position the caret accordingly (IDEA-CR-14717)
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
class Foo{
|
||||
Foo(int arg) {
|
||||
}
|
||||
Foo(boolean arg) {
|
||||
}
|
||||
Foo() {
|
||||
}
|
||||
Foo(boolean arg) {
|
||||
}
|
||||
|
||||
{
|
||||
Foo f = new F<caret>
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
class Foo{
|
||||
Foo(int arg) {
|
||||
}
|
||||
Foo() {
|
||||
}
|
||||
Foo(boolean arg) {
|
||||
}
|
||||
|
||||
{
|
||||
Foo f = new Foo();<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user