package ocaml-webworker

  1. Overview
  2. Docs
type parsetree = [
  1. | `Interface of Parsetree.signature
  2. | `Implementation of Parsetree.structure
]
type comment = string * Location.t
type result = {
  1. config : Mconfig.t;
  2. lexer_errors : exn list;
  3. parser_errors : exn list;
  4. comments : comment list;
  5. parsetree : parsetree;
  6. no_labels_for_completion : bool;
}
val print_pretty : Extend_protocol.Reader.pretty_parsetree -> string