Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
mauromol opened this issue Jan 7, 2019 · 2 comments
Closed

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

mauromol opened this issue Jan 7, 2019 · 2 comments
Assignees
Milestone

Comments

@mauromol
Copy link

mauromol commented Jan 7, 2019

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

@eric-milles
Copy link
Member

Ready to test

@mauromol
Copy link
Author

I confirm it works in 3.3.0.xx-201901180207-e49, thank you! 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants