We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1056c03 commit c751673Copy full SHA for c751673
src/fsharp/vs/Exprs.fs
@@ -718,6 +718,10 @@ module FSharpExprConvert =
718
with _ ->
719
failwithf "Failed to resolve type '%s'" (nlr.EnclosingEntity.CompiledName)
720
let ccu = nlr.EnclosingEntity.nlr.Ccu
721
+ let possible = e.ModuleOrNamespaceType.TryLinkVal(ccu, nlr.ItemKey)
722
+ match possible with
723
+ | Some _ -> makeFSCall isMember vr
724
+ | None ->
725
let vName = nlr.ItemKey.PartialKey.LogicalName // this is actually compiled name
726
let findByName =
727
e.MembersOfFSharpTyconSorted |> List.filter (fun v -> v.CompiledName = vName)
0 commit comments