package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type visitor_in = {
  1. kexpr : Cst_cpp.expr vin;
  2. kstmt : Cst_cpp.stmt vin;
  3. kinit : Cst_cpp.initialiser vin;
  4. ktypeC : Cst_cpp.typeC vin;
  5. kclass_member : Cst_cpp.class_member vin;
  6. kfieldkind : Cst_cpp.fieldkind vin;
  7. kparameter : Cst_cpp.parameter vin;
  8. kcompound : Cst_cpp.compound vin;
  9. kclass_def : Cst_cpp.class_definition vin;
  10. kfunc_def : Cst_cpp.func_definition vin;
  11. kcpp : Cst_cpp.cpp_directive vin;
  12. kblock_decl : Cst_cpp.block_declaration vin;
  13. kdeclaration : Cst_cpp.declaration vin;
  14. ktoplevel : Cst_cpp.toplevel vin;
  15. kinfo : Cst_cpp.tok vin;
}
and visitor_out = Cst_cpp.any -> unit
and 'a vin = (('a -> unit) * visitor_out) -> 'a -> unit
val default_visitor : visitor_in
val mk_visitor : visitor_in -> visitor_out