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
modifies
consumes and modifies declarations currently accept any terms. These should be restricted to qualified identifiers only e.g. x.y.z.
consumes
term
x.y.z
The text was updated successfully, but these errors were encountered:
Do we want to allow x.(old y).z?
Sorry, something went wrong.
That is very interesting, indeed :) I believe this would make sense only for consumes, right? A modifies clause containing an old seems odd to me.
old
Here is an example where modifies x.(old y).z would make sense:
modifies x.(old y).z
type t = { mutable y: int ref } let f (x: t) = x.y := 0; x.y <- ref 0
No branches or pull requests
consumes
andmodifies
declarations currently accept anyterm
s.These should be restricted to qualified identifiers only e.g.
x.y.z
.The text was updated successfully, but these errors were encountered: