Module Flow_ast.Expression

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