module type Ast = sig
.. end
Abstract view of a version of an OCaml Ast
module Parsetree: sig
.. end
module Outcometree: sig
.. end
module Ast_mapper: sig
.. end
module Config: sig
.. end
val shallow_identity : Ast_mapper.mapper
val map_signature : Ast_mapper.mapper ->
Parsetree.signature ->
Parsetree.signature
val map_structure : Ast_mapper.mapper ->
Parsetree.structure ->
Parsetree.structure
val make_top_mapper : signature:(Parsetree.signature ->
Parsetree.signature) ->
structure:(Parsetree.structure ->
Parsetree.structure) ->
Ast_mapper.mapper