Module Class.Method

type t('M, 'T) = ('T, t'('M, 'T));
and kind =
  1. | Constructor
  2. | Method
  3. | Get
  4. | Set
;
and t'('M, 'T) = {
  1. kind: kind,
  2. key: Expression.Object.Property.key('M, 'T),
  3. value: ('M, Function.t('M, 'T)),
  4. static: bool,
  5. decorators: list(Class.Decorator.t('M, 'T)),
  6. comments: option(Syntax.t('M, unit)),
};