We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
3.1.2-RC2
Generated documentation for methods from extensions have signatures without parameters.
class A extension (a: A) def fun(x: Int) = x + 1
Output should show proper signature for method fun. In this example it should be: def fun(x: Int): Int
def fun(x: Int): Int
The text was updated successfully, but these errors were encountered:
This seems to be working correctly with the newest docs, e.g. https://dotty.epfl.ch/api/scala/IArray$.html#partition-ffffffff
Sorry, something went wrong.
https://dotty.epfl.ch/api/scala/IArray$.html#partition-ffffffff this is not method which is accessible via extension, but this is declaration of extension. I can't find such usage in existing documentation, but still it doesn't work properly as it does for implicitly added methods https://dotty.epfl.ch/api/scala/Int.html#+-ffffffb7
Successfully merging a pull request may close this issue.
Compiler version
3.1.2-RC2
Minimized example
Generated documentation for methods from extensions have signatures without parameters.
Output
Expectation
Output should show proper signature for method fun. In this example it should be:
def fun(x: Int): Int
The text was updated successfully, but these errors were encountered: