JSX.MemberExpression
type t('M, 'T) = ('M, t'('M, 'T));
and _object('M, 'T) =
| Identifier(Identifier.t('M, 'T))
| MemberExpression(t('M, 'T))
;
and t'('M, 'T) = {
_object: _object('M, 'T),
property: Identifier.t('M, 'T),
};