Flow_ast.Functionmodule RestParam : sig ... endmodule Param : sig ... endmodule ThisParam : sig ... endmodule Params : sig ... endmodule ReturnAnnot : sig ... endval pp_effect_ : Format.formatter -> effect_ -> unitval show_effect_ : effect_ -> stringtype ('M, 'T) t = {id : ('M, 'T) Identifier.t option;params : ('M, 'T) Params.t;body : ('M, 'T) body;async : bool;generator : bool;effect_ : effect_;predicate : ('M, 'T) Type.Predicate.t option;return : ('M, 'T) ReturnAnnot.t;tparams : ('M, 'T) Type.TypeParams.t option;comments : ('M, unit) Syntax.t option;sig_loc : 'M;}and ('M, 'T) body = | BodyBlock of 'M * ('M, 'T) Statement.Block.t| BodyExpression of ('M, 'T) Expression.tval pp :
(Format.formatter -> 'M -> unit) ->
(Format.formatter -> 'T -> unit) ->
Format.formatter ->
('M, 'T) t ->
unitval show :
(Format.formatter -> 'M -> unit) ->
(Format.formatter -> 'T -> unit) ->
('M, 'T) t ->
stringval pp_body :
(Format.formatter -> 'M -> unit) ->
(Format.formatter -> 'T -> unit) ->
Format.formatter ->
('M, 'T) body ->
unitval show_body :
(Format.formatter -> 'M -> unit) ->
(Format.formatter -> 'T -> unit) ->
('M, 'T) body ->
string