-
-
Notifications
You must be signed in to change notification settings - Fork 199
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
Clicks on value tuple items are broken [source.dot.net] #221
Comments
I'm not sure if there is any useful location this can go to. Would you want it to go to ValueTuple<T1, T2>.Item1? |
I think at least it should not point to an unexisting location. |
Should it go to the type of Item1 instead? Would be more useful I think. |
This is roughly the place that is looking at the current identifier, sees it's a reference to a symbol, sees the symbol is a field and does the processing: SourceBrowser/src/HtmlGenerator/Pass1-Generation/DocumentGenerator.References.cs Line 335 in 2b57a3d
I think roughly in this area we could add some could that would detect that we're looking at a value tuple field, get its type, and create a hyperlink to that type. |
This page, for example
Clicking on
.Connection;
redirects to this page, which saysDon't use this page directly, pass #symbolId to get redirected.
.I've tried a couple of
ValueTuple
s with different arity, all of them don't work.@alexperovich
The text was updated successfully, but these errors were encountered: