Module PyIR.BuiltinCaller

type unary_intrinsics =
  1. | PrintExpr
  2. | ImportStar
  3. | StopiterationError
  4. | AsyncGenValueWrapperNew
  5. | UnaryPos
  6. | ListToTuple
  7. | MakeTypevar
  8. | MakeParamspec
  9. | MakeTypevartuple
  10. | SubscriptGeneric
  11. | MakeTypealias
type binary_intrinsics =
  1. | PrepReraiseStar
  2. | TypevarWithBound
  3. | TypevarWithConstraints
  4. | SetFunctionTypeParams
type t =
  1. | BuildClass
  2. | Format
  3. | FormatFn of FormatFunction.t
  4. | Inplace of BinaryOp.t
  5. | Binary of BinaryOp.t
  6. | BinarySlice
  7. | Unary of UnaryOp.t
  8. | Compare of CompareOp.t
  9. | GetAIter
  10. | GetIter
  11. | NextIter
  12. | HasNextIter
  13. | IterData
  14. | GetYieldFromIter
  15. | ListAppend
  16. | ListExtend
  17. | ListToTuple
  18. | SetAdd
  19. | SetUpdate
  20. | DictSetItem
  21. | DictUpdate
  22. | DictMerge
  23. | DeleteSubscr
  24. | YieldFrom
  25. | GetAwaitable
  26. | UnpackEx
  27. | GetPreviousException
  28. | UnaryIntrinsic of unary_intrinsics
  29. | BinaryIntrinsic of binary_intrinsics