Module Class.Property

type ('M, 'T) t = 'T * ('M, 'T) t'
and ('M, 'T) t' = {
  1. key : ('M, 'T) Expression.Object.Property.key;
  2. value : ('M, 'T) value;
  3. annot : ('M, 'T) Type.annotation_or_hint;
  4. static : bool;
  5. variance : 'M Variance.t option;
  6. comments : ('M, unit) Syntax.t option;
}
and ('M, 'T) value =
  1. | Declared
  2. | Uninitialized
  3. | Initialized of ('M, 'T) Expression.t