From 23f63d969b837d5ab9cea109d9fb2907a95b9ebf Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Thu, 9 Jan 2020 18:06:31 +0100 Subject: [PATCH] the ParamData type got out of sync with the comment describing which field is which in #4888 (#8139) removing the comment and naming the fields --- src/fsharp/infos.fs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fsharp/infos.fs b/src/fsharp/infos.fs index 0231d5f2a..83d7ab4c3 100755 --- a/src/fsharp/infos.fs +++ b/src/fsharp/infos.fs @@ -577,8 +577,7 @@ type ParamNameAndType = [] /// Full information about a parameter returned for use by the type checker and language service. type ParamData = - /// ParamData(isParamArray, isOut, optArgInfo, callerInfo, nameOpt, reflArgInfo, ttype) - ParamData of bool * bool * bool * OptionalArgInfo * CallerInfo * Ident option * ReflectedArgInfo * TType + ParamData of isParamArray: bool * isInArg: bool * isOut: bool * optArgInfo: OptionalArgInfo * callerInfo: CallerInfo * nameOpt: Ident option * reflArgInfo: ReflectedArgInfo * ttype: TType //------------------------------------------------------------------------- -- GitLab