We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider the following:
def answer = (-42).&abs println answer()
This script prints out "42", so taking a method pointer of a category method is supported. However, "abs" currently shows as unknown.
And this as well:
class One804 { static def m(self) {} } class Two804 { void m() { use (One804) { this.&m // should refer to One804.m(Object) this.m() // refers to One804.m(Object) } } }
The text was updated successfully, but these errors were encountered:
Fix for #804: type inferencing for method pointer to category method
a1732cf
Fix for #804: method pointer to category method not supported for Class
c1f518b
eric-milles
No branches or pull requests
Consider the following:
This script prints out "42", so taking a method pointer of a category method is supported. However, "abs" currently shows as unknown.
And this as well:
The text was updated successfully, but these errors were encountered: