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. decorators : ('M, 'T) Class.Decorator.t list;
  7. comments : ('M, unit) Syntax.t option;
}
and ('M, 'T) value =
  1. | Declared
  2. | Uninitialized
  3. | Initialized of ('M, 'T) Expression.t
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string
val pp_t' : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t' -> unit
val show_t' : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t' -> string
val pp_value : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) value -> unit
val show_value : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) value -> string