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
op
I not too familiar with macro annotations but I would like to propose a change of op annotation arguments from:
final class op(name: String, alias: Boolean = false) extends Annotation
to:
final class op(rename: Option[String] = None, aliases: List[String] = Nil) extends Annotation
to support multiple aliases.
This will also allow for renaming with alias which is currently mutually exclusive.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I not too familiar with macro annotations but I would like to propose a change of
op
annotation arguments from:to:
to support multiple aliases.
This will also allow for renaming with alias which is currently mutually exclusive.
The text was updated successfully, but these errors were encountered: