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