Flow_ast.JSX
module Identifier : sig ... end
module NamespacedName : sig ... end
module ExpressionContainer : sig ... end
module Text : sig ... end
module Attribute : sig ... end
module SpreadAttribute : sig ... end
module MemberExpression : sig ... end
type ('M, 'T) name =
| Identifier of ('M, 'T) Identifier.t
| NamespacedName of ('M, 'T) NamespacedName.t
| MemberExpression of ('M, 'T) MemberExpression.t
module Opening : sig ... end
module Closing : sig ... end
module SpreadChild : sig ... end
type ('M, 'T) child = 'M * ('M, 'T) child'
and ('M, 'T) child' =
| Element of ('M, 'T) element
| Fragment of ('M, 'T) fragment
| ExpressionContainer of ('M, 'T) ExpressionContainer.t
| SpreadChild of ('M, 'T) SpreadChild.t
| Text of Text.t