Module Flow_ast.Expression

Sourcemodule CallTypeArg : sig ... end
Sourcemodule CallTypeArgs : sig ... end
Sourcemodule SpreadElement : sig ... end
Sourcemodule Array : sig ... end
Sourcemodule TemplateLiteral : sig ... end
Sourcemodule TaggedTemplate : sig ... end
Sourcemodule Object : sig ... end
Sourcemodule Sequence : sig ... end
Sourcemodule Unary : sig ... end
Sourcemodule Binary : sig ... end
Sourcemodule Assignment : sig ... end
Sourcemodule Update : sig ... end
Sourcemodule Logical : sig ... end
Sourcemodule Conditional : sig ... end
Sourcetype ('M, 'T) expression_or_spread =
  1. | Expression of ('M, 'T) Expression.t
  2. | Spread of ('M, 'T) SpreadElement.t
Sourcemodule ArgList : sig ... end
Sourcemodule New : sig ... end
Sourcemodule Call : sig ... end
Sourcemodule OptionalCall : sig ... end
Sourcemodule Member : sig ... end
Sourcemodule OptionalMember : sig ... end
Sourcemodule Yield : sig ... end
Sourcemodule TypeCast : sig ... end
Sourcemodule AsExpression : sig ... end
Sourcemodule AsConstExpression : sig ... end
Sourcemodule TSSatisfies : sig ... end
Sourcemodule MetaProperty : sig ... end
Sourcemodule This : sig ... end
Sourcemodule Super : sig ... end
Sourcemodule Import : sig ... end
Sourcetype ('M, 'T) t = 'T * ('M, 'T) t'
Sourceand ('M, 'T) t' =
  1. | Array of ('M, 'T) Array.t
  2. | ArrowFunction of ('M, 'T) Function.t
  3. | AsConstExpression of ('M, 'T) AsConstExpression.t
  4. | AsExpression of ('M, 'T) AsExpression.t
  5. | Assignment of ('M, 'T) Assignment.t
  6. | Binary of ('M, 'T) Binary.t
  7. | Call of ('M, 'T) Call.t
  8. | Class of ('M, 'T) Class.t
  9. | Conditional of ('M, 'T) Conditional.t
  10. | Function of ('M, 'T) Function.t
  11. | Identifier of ('M, 'T) Identifier.t
  12. | Import of ('M, 'T) Import.t
  13. | JSXElement of ('M, 'T) JSX.element
  14. | JSXFragment of ('M, 'T) JSX.fragment
  15. | StringLiteral of 'M StringLiteral.t
  16. | BooleanLiteral of 'M BooleanLiteral.t
  17. | NullLiteral of ('M, unit) Syntax.t option
  18. | NumberLiteral of 'M NumberLiteral.t
  19. | BigIntLiteral of 'M BigIntLiteral.t
  20. | RegExpLiteral of 'M RegExpLiteral.t
  21. | ModuleRefLiteral of ('M, 'T) ModuleRefLiteral.t
  22. | Logical of ('M, 'T) Logical.t
  23. | Member of ('M, 'T) Member.t
  24. | MetaProperty of 'M MetaProperty.t
  25. | New of ('M, 'T) New.t
  26. | Object of ('M, 'T) Object.t
  27. | OptionalCall of ('M, 'T) OptionalCall.t
  28. | OptionalMember of ('M, 'T) OptionalMember.t
  29. | Sequence of ('M, 'T) Sequence.t
  30. | Super of 'M Super.t
  31. | TaggedTemplate of ('M, 'T) TaggedTemplate.t
  32. | TemplateLiteral of ('M, 'T) TemplateLiteral.t
  33. | This of 'M This.t
  34. | TypeCast of ('M, 'T) TypeCast.t
  35. | TSSatisfies of ('M, 'T) TSSatisfies.t
  36. | Unary of ('M, 'T) Unary.t
  37. | Update of ('M, 'T) Update.t
  38. | Yield of ('M, 'T) Yield.t