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
plugin version: 0.115
in OCaml, the ref keyword can be used as an identifier, leading to incorrect parsing:
in pervasives.ml
type 'a ref = { mutable contents : 'a } external ref : 'a -> 'a ref = "%makemutable"
The text was updated successfully, but these errors were encountered:
hmm, maybe 'ref' is not a keyword of the OCaml language.
Sorry, something went wrong.
list of keywords: https://v2.ocaml.org/manual/lex.html#sss:keywords
fixed in 0.118
No branches or pull requests
plugin version: 0.115
Description
in OCaml, the ref keyword can be used as an identifier, leading to incorrect parsing:
in pervasives.ml
The text was updated successfully, but these errors were encountered: