Module Flow_ast_utils.ExpressionSort

type t =
  1. | Array
  2. | ArrowFunction
  3. | Assignment
  4. | Binary
  5. | Call
  6. | Class
  7. | Conditional
  8. | Function
  9. | Identifier
  10. | Import
  11. | JSXElement
  12. | JSXFragment
  13. | Literal
  14. | Logical
  15. | Match
  16. | Member
  17. | MetaProperty
  18. | New
  19. | Object
  20. | OptionalCall
  21. | OptionalMember
  22. | Satisfies
  23. | Sequence
  24. | Super
  25. | TaggedTemplate
  26. | TemplateLiteral
  27. | This
  28. | TypeCast
  29. | Unary
  30. | Update
  31. | Yield
;
let to_string: t => string;