Module Class.Property

type t('M, 'T) = ('T, t'('M, 'T));
and t'('M, 'T) = {
  1. key: Expression.Object.Property.key('M, 'T),
  2. value: value('M, 'T),
  3. annot: Type.annotation_or_hint('M, 'T),
  4. static: bool,
  5. variance: option(Variance.t('M)),
  6. decorators: list(Class.Decorator.t('M, 'T)),
  7. comments: option(Syntax.t('M, unit)),
};
and value('M, 'T) =
  1. | Declared
  2. | Uninitialized
  3. | Initialized(Expression.t('M, 'T))
;
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_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;
let pp_value: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => value('M, 'T) => unit;
let show_value: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => value('M, 'T) => string;