package melange

  1. Overview
  2. Docs
Toolchain to produce JS from Reason/OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

melange-7.0.1-414.tbz
sha256=4cbd885db9801068fb59d13b6e08e13fe3fe091dc14716382a90764ee874a8a7
sha512=155d448a0e84e81541fd0989d3a7f4b96c625ff288aeeccfadf7e36751f1188bc295c999cc725fda5ad157150eed33ebc5735d81820b9fc45772bdbf0f6d9b29

doc/melange.js_parser/Js_parser/Flow_ast/Expression/Binary/index.html

Module Expression.BinarySource

Sourcetype operator =
  1. | Equal
  2. | NotEqual
  3. | StrictEqual
  4. | StrictNotEqual
  5. | LessThan
  6. | LessThanEqual
  7. | GreaterThan
  8. | GreaterThanEqual
  9. | LShift
  10. | RShift
  11. | RShift3
  12. | Plus
  13. | Minus
  14. | Mult
  15. | Exp
  16. | Div
  17. | Mod
  18. | BitOr
  19. | Xor
  20. | BitAnd
  21. | In
  22. | Instanceof
Sourceand ('M, 'T) t = {
  1. operator : operator;
  2. left : ('M, 'T) Expression.t;
  3. right : ('M, 'T) Expression.t;
  4. comments : ('M, unit) Syntax.t option;
}
Sourceval pp_operator : Format.formatter -> operator -> unit
Sourceval show_operator : operator -> string
Sourceval pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
Sourceval show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string