Module Expression.Object

module Property: { ... };
module SpreadProperty: { ... };
type property('M, 'T) =
  1. | Property(Property.t('M, 'T))
  2. | SpreadProperty(SpreadProperty.t('M, 'T))
;
and t('M, 'T) = {
  1. properties: list(property('M, 'T)),
  2. comments: option(Syntax.t('M, list(Comment.t('M)))),
};