package reason

  1. Overview
  2. Docs
Reason: Syntax & Toolchain for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

reason-3.17.2.tbz
sha256=7f4087016e8c393a13d57b7737677bc1dbf16978fd43c19354d4d79a794c8c47
sha512=3d3015d25bce329fbee9cef9b114831e7db1c10e19a26cbcaa27948c376bff3518b9d56fda9091c6df887df9ee8c33f45e1071e87933de79d65bcbf58c93cb17

doc/reason/Reason/Reason_comment/index.html

Module Reason.Reason_commentSource

Sourcetype category =
  1. | EndOfLine
  2. | SingleLine
  3. | Regular
Sourcetype t = {
  1. location : Location.t;
  2. category : category;
  3. text : string;
}
Sourceval category : t -> category
Sourceval location : t -> Location.t
Sourceval wrap : t -> string
Sourceval make : location:Location.t -> category -> string -> t
Sourceval isLineComment : t -> bool