Skip to content

No code assist for 'super(' and 'this(' #789

@mauromol

Description

@mauromol

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 ")".

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions