-
Notifications
You must be signed in to change notification settings - Fork 789
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
[From VSTS] Display None as "None" instead of "null" in Data Tips #3716
Comments
We could only do this with our own debugger engine which was aware of F# types |
@gregg-miskelly just to check - is this another case of "F# needs its own EE"? |
Correct |
link #2544 |
I just wasted an hour due to this issue.
Supremely confusing when you're looking at server logs for things that you think should be Options. |
@samuela What you describe is not this issue. This issue is about the representation of What you're observing is that let inline isOptionType (t:System.Type) =
t.GetTypeInfo().IsGenericType && t.GetGenericTypeDefinition() = typedefof<option<_>> |
Duplicate of #10168 |
From here: https://developercommunity.visualstudio.com/content/problem/44030/f-debugging-option-types-returns-null.html
The behavior described is also the same in VS2015 Update 3:
So this is not a regression.
The text was updated successfully, but these errors were encountered: