package libsail

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a visit_action =
  1. | SkipChildren
    (*

    Do not visit the children. Return the node as it is.

    *)
  2. | DoChildren
    (*

    Continue with the children of this node. Rebuild the node on return if any of the children changes (use == test)

    *)
  3. | DoChildrenPost of unit -> unit
    (*

    Continue with the chuldren of the node the same as DoChildren. However run the provided function after visiting the children

    *)
  4. | ChangeTo of 'a
    (*

    Replace the expression with the given one

    *)
  5. | ChangeDoChildrenPost of 'a * 'a -> 'a
    (*

    First consider that the entire exp is replaced by the first parameter. Then continue with the children. On return rebuild the node if any of the children has changed and then apply the function on the node

    *)

Different visiting actions. 'a will be instantiated with various AST types.

val do_visit : 'v -> 'a visit_action -> ('v -> 'a -> 'a) -> 'a -> 'a
val change_do_children : 'a -> 'a visit_action
val map_no_copy : ('a -> 'a) -> 'a list -> 'a list
val map_no_copy_list : ('a -> 'a list) -> 'a list -> 'a list
val map_no_copy_opt : ('a -> 'a) -> 'a option -> 'a option
val do_visit_list : 'v -> 'a list visit_action -> ('v -> 'a -> 'a) -> 'a -> 'a list
OCaml

Innovation. Community. Security.