Skip to content

Commit

Permalink
the ParamData type got out of sync with the comment describing which …
Browse files Browse the repository at this point in the history
…field is which in dotnet#4888

removing the comment and naming the fields
  • Loading branch information
smoothdeveloper committed Jan 8, 2020
1 parent 031868f commit 6d44443
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fsharp/infos.fs
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,7 @@ type ParamNameAndType =
[<NoComparison; NoEquality>]
/// 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


//-------------------------------------------------------------------------
Expand Down

0 comments on commit 6d44443

Please sign in to comment.