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
I checked this with last build and now Overloads() returns an item, but it's always the same method without references to other overloads.
In above example, calling [JustOverloads Entity].MembersFunctionsAndValues.[1].Overloads(false) will give Some(seq [Overload(i:int)]) but you don't get information about Overload(s:string).
Moreover, if you call Overloads(false) on a FSharpMemberOrFunctionOrValue taken from a typed expression you still don't get any item.
For example the following code:
The symbol
Overload
is aMemberFunctionOrValue
but is assigned aValRef
type so theOverloads
code doesnt ever return an item:Im not sure why the members are created as
ValRef
rather thanMethInfo
is it the case that only C# types with overloads are assigned that way?The text was updated successfully, but these errors were encountered: