Module Expression.Call

type t('M, 'T) = {
  1. callee: Expression.t('M, 'T),
  2. targs: option(CallTypeArgs.t('M, 'T)),
  3. arguments: ArgList.t('M, 'T),
  4. comments: option(Syntax.t('M, unit)),
};