Follow-up to #770.
Consider the following Groovy classes:
package test46
class Base {
Base(String foo, int bar) {}
}
package test46
class Ext extends Base {
Ext(String foo, int bar) {
super(|
}
}
Invoke code assist at "|": no suggestion is given.
Also consider this variant:
package test46
class Ext2 extends Base {
Ext2(String foo, int bar) {
super(foo, bar)
}
Ext2() {
this(|
}
}
Invoke code assist at "|": no suggestion is given.
Note: they are given if there's a trailing closed parenthesis ")".
Follow-up to #770.
Consider the following Groovy classes:
Invoke code assist at "|": no suggestion is given.
Also consider this variant:
Invoke code assist at "|": no suggestion is given.
Note: they are given if there's a trailing closed parenthesis ")".