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
Deprecating mixin member causes the code generation to output invalid code. Tested with 0.17.12
Given:
@mixin structure Extra { @deprecated @required name: String } structure Greeting with [Extra] { @required message: String }
actual generated code:
trait Extra { def @deprecated(message = "N/A", since = "N/A") name: String }
expected generated code:
trait Extra { @deprecated(message = "N/A", since = "N/A") def name: String }
Full code to reproduce the issue can be found here https://github.com/ghostbuster91/demos/tree/deprecated-issue-mixin
The text was updated successfully, but these errors were encountered:
closed in #1123 and released in 0.17.13, for reasons unknown github (or github refined, idk) can't tell that the PR is part of that tag.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Deprecating mixin member causes the code generation to output invalid code.
Tested with 0.17.12
Given:
actual generated code:
expected generated code:
Full code to reproduce the issue can be found here https://github.com/ghostbuster91/demos/tree/deprecated-issue-mixin
The text was updated successfully, but these errors were encountered: