package melange

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module RestParam : sig ... end
module Param : sig ... end
module ThisParam : sig ... end
module Params : sig ... end
module ReturnAnnot : sig ... end
type ('M, 'T) t = {
  1. id : ('M, 'T) Identifier.t option;
  2. params : ('M, 'T) Params.t;
  3. body : ('M, 'T) body;
  4. async : bool;
  5. generator : bool;
  6. predicate : ('M, 'T) Type.Predicate.t option;
  7. return : ('M, 'T) ReturnAnnot.t;
  8. tparams : ('M, 'T) Type.TypeParams.t option;
  9. comments : ('M, unit) Syntax.t option;
  10. sig_loc : 'M;
}
and ('M, 'T) body =
  1. | BodyBlock of 'M * ('M, 'T) Statement.Block.t
  2. | BodyExpression of ('M, 'T) Expression.t