-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Allow deprecation of curly Exprs #9830
Comments
I don't think there is any good way to do this. |
Unfortunately this means implementing something along the lines of #8240 would be hugely breaking. |
Does this work now given 1b6efc7 ? |
It works only if just the name changes; we don't have a way to deprecate given combinations of type parameters. |
@JeffBezanson Should we close this? |
We don't have this feature, but it's also pretty hard to implement and I have no immediate plans to do it. |
In #9820 @matrixmorpheus attempted to deprecate the constructor
Triangular{S, T, :U, true}
which no longer exists on 0.4-dev. However,This error is triggered currently because the expression being deprecated is not currently supported.
(
@deprecate
only handlesExpr
s withhead == call
currently).I tried to change this line to add the last
|| ...
clause:but this resulted in a new error instead when I tried to execute the same
@deprecate
command:so I'm not sure how to fix this.
The text was updated successfully, but these errors were encountered: