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)),
};
let pp: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => t('M, 'T) => unit;
let show: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => t('M, 'T) => string;
let pp_kind: Format.formatter => kind => unit;
let show_kind: kind => string;
let pp_t': (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => t'('M, 'T) => unit;
let show_t': (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => t'('M, 'T) => string;