Module Try.CatchClause

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. param: option(Pattern.t('M, 'T)),
  2. body: ('M, Block.t('M, 'T)),
  3. comments: option(Syntax.t('M, unit)),
};