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 e50a356 commit 919064aCopy full SHA for 919064a
src/fsharp/infos.fs
@@ -376,7 +376,9 @@ type ValRef with
376
| [] -> false)
377
378
member vref.ImplementedSlotSignatures =
379
- vref.MemberInfo.Value.ImplementedSlotSigs
+ match vref.MemberInfo with
380
+ | None -> []
381
+ | Some membInfo -> membInfo.Value.ImplementedSlotSigs
382
383
//-------------------------------------------------------------------------
384
// Helper methods associated with using TAST metadata (F# members, values etc.)
0 commit comments