Module Object.Property

type ('M, 'T) key =
  1. | Literal of 'M * 'M Literal.t
  2. | Identifier of ('M, 'T) Identifier.t
  3. | Computed of ('M, 'T) ComputedKey.t
and ('M, 'T) t = 'M * ('M, 'T) t'
and ('M, 'T) t' = {
  1. key : ('M, 'T) key;
  2. pattern : ('M, 'T) Pattern.t;
  3. default : ('M, 'T) Expression.t option;
  4. shorthand : bool;
}