-
Notifications
You must be signed in to change notification settings - Fork 26
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
Evaluate a' during debug #110
Comments
@db4 The |
Great, thanks a lot!
I see. Maybe it's worth a bug report or feature request to vscode team? |
Yes, it is. |
Alas, the vscode team won't fix microsoft/vscode#32873 in the foreseeable future. So you can close the issue. |
Hovering over a variable with trailing single quote (like
a'
) does not work properly:a
is evaluated instead. I suppose it's vscode debug engine passing the wrong name toevaluateRequest()
but maybe it can be tuned to handle OCaml variable names correctly?initializeRequest()
or something like that?A related problem is that one cannot evaluate record fields like
a.b
. Besides problems with hovering engine it also requires some changes in the value parser to work even in a watch: ocamldebug responds in that case with"$<number> : <type> = <value>"
where$<number>
is a temporary id, not acceptable for the current parser.The text was updated successfully, but these errors were encountered: