Module Expression.Member

type property('M, 'T) =
  1. | PropertyIdentifier(Identifier.t('M, 'T))
  2. | PropertyPrivateName(PrivateName.t('M))
  3. | PropertyExpression(Expression.t('M, 'T))
;
and t('M, 'T) = {
  1. _object: Expression.t('M, 'T),
  2. property: property('M, 'T),
  3. comments: option(Syntax.t('M, unit)),
};
let pp_property: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => property('M, 'T) => unit;
let show_property: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => property('M, 'T) => string;
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;