-
Notifications
You must be signed in to change notification settings - Fork 833
Fix navigation for external enums, DUs and name resultion for members #15270
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vzarytovskii I don't think we have capabilities to test external item navigation in the editor tests so far. We can add an int test later though
| FSharp.Compiler.AbstractIL.IL+ILArgConvention: Boolean IsFastCall | ||
| FSharp.Compiler.AbstractIL.IL+ILArgConvention: Boolean IsStdCall | ||
| FSharp.Compiler.AbstractIL.IL+ILArgConvention: Boolean IsThisCall | ||
| FSharp.Compiler.AbstractIL.IL+ILArgConvention: Boolean IsThisCal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, that is weird. Not sure where did it come from. Will fix it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
* LexFilter: cleanup whitespaces (#15250) * Parser: rewrite tuple expr recovery to allow better items recovery (#15227) * Checker: recover on unknown record fields (#15214) * Make anycpu work correctly on Arm64 (#15234) * Makeanuycpu work correctly on arm64 * Update Microsoft.FSharp.Targets * Fix15254 (#15257) * Deploy only compressed metadata for dotnet sdk implementation (#15230) * compress fsharp for sdk * Update FSharp.DependencyManager.Nuget.fsproj * Parser: more binary expressions recovery (#15255) * Use background CancellableTask in VS instead of async & asyncMaybe (#15187) * wip * iteration * iteration: quickinfo, help context * fantomas * todo * moved tasks to editor project, fixed comment colouring bug * fantomas * Fantomas + PR feedback * Update vsintegration/src/FSharp.Editor/Hints/HintService.fs Co-authored-by: Andrii Chebukin <[email protected]> * Revert "Update vsintegration/src/FSharp.Editor/Hints/HintService.fs" This reverts commit bf51b31. --------- Co-authored-by: Andrii Chebukin <[email protected]> * Name resolution: actually add reported item when trying to replace (#14772) Co-authored-by: Tomas Grosup <[email protected]> * Move flatErrors tests from fsharpqa (#15251) * temp * tests * flaterrors * update tests * preserve ranges in result of UnsolvedTyparsOfModuleDef to help with warnings (#15243) * preserve ranges in result of UnsolvedTyparsOfModuleDef to help with warnings * use fallback range only for range0 * pattern match instead of Option.isSome * Add test * Revert "Add test" This reverts commit e05e808. * Make `FSharpReferencedProject` representation public (#15266) * Make FSharpReferencedProject representation public * Update surface area * Fantomas * Fantomas --------- Co-authored-by: Tomas Grosup <[email protected]> * Fix navigation for external enums, DUs and name resultion for members (#15270) * Update FSharp.Compiler.Service.SurfaceArea.netstandard20.debug.bsl * Add warning when compiler selects among multiple record type candidates, fslang-suggestion 1091 (#15256) * Protect assembly exploration for C# extension members (#15271) * Compute ValInline.Never for externs (#15274) * Compute ValInline.Never for externs --------- Co-authored-by: Eugene Auduchinok <[email protected]> Co-authored-by: Kevin Ransom (msft) <[email protected]> Co-authored-by: Vlad Zarytovskii <[email protected]> Co-authored-by: Andrii Chebukin <[email protected]> Co-authored-by: Tomas Grosup <[email protected]> Co-authored-by: dawe <[email protected]>
Co-authored-by: Andrii Chebukin <[email protected]> Co-authored-by: Tomas Grosup <[email protected]> Co-authored-by: Eugene Auduchinok <[email protected]> Co-authored-by: Kevin Ransom (msft) <[email protected]> Co-authored-by: Vlad Zarytovskii <[email protected]> Co-authored-by: dawe <[email protected]> Fix15254 (#15257) Fix navigation for external enums, DUs and name resultion for members (#15270)
Adds processing of
FSharpFieldandFSharpUnionCasewhen navigating to external definition.Adds
DeclaringEntityfor the DUs.Adds checking of declaring entity compiled names, to navigate to proper symbol in case of the nested modules.
Fixes #15160 #15159
@psfinaki No real idea of how to test it with real external definitions.