Module Function.Params

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. this_: option(ThisParam.t('M, 'T)),
  2. params: list(Param.t('M, 'T)),
  3. rest: option(RestParam.t('M, 'T)),
  4. comments: option(Syntax.t('M, list(Comment.t('M)))),
};