You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
* Update GetDeclarationListSymbols to add getAllEntities* Don't group types with the same display name as function overloads.Now that we can include all entities for top level completions,the grouping function can incorrectly group types with the samedisplay name as function overloads. Use the compiled name insteadas this includes the namespace.* Get logical name from ExnCase* Make getAllEntities optionalAlso renamed getAllSymbols to getAllEntities everywhere forconsistency
match GetDeclItemsForNamesAtPosition(ctok, parseResultsOpt, Some partialName.QualifyingIdents, Some partialName.PartialIdent, partialName.LastDotPos, line, lineStr, partialName.EndColumn+1, ResolveTypeNamesToCtors, ResolveOverloads.Yes,getAllSymbols, hasTextChangedSinceLastTypecheck)with
937
+
match GetDeclItemsForNamesAtPosition(ctok, parseResultsOpt, Some partialName.QualifyingIdents, Some partialName.PartialIdent, partialName.LastDotPos, line, lineStr, partialName.EndColumn+1, ResolveTypeNamesToCtors, ResolveOverloads.Yes,getAllEntities, hasTextChangedSinceLastTypecheck)with
match GetDeclItemsForNamesAtPosition(ctok, parseResultsOpt, Some partialName.QualifyingIdents, Some partialName.PartialIdent, partialName.LastDotPos, line, lineStr, partialName.EndColumn+1, ResolveTypeNamesToCtors, ResolveOverloads.Yes,(fun()->[]), hasTextChangedSinceLastTypecheck)with
957
+
match GetDeclItemsForNamesAtPosition(ctok, parseResultsOpt, Some partialName.QualifyingIdents, Some partialName.PartialIdent, partialName.LastDotPos, line, lineStr, partialName.EndColumn+1, ResolveTypeNamesToCtors, ResolveOverloads.Yes,getAllEntities, hasTextChangedSinceLastTypecheck)with