package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type visitor_in = {
  1. kexpr : ((Cst_php.expr -> unit) * visitor_out) -> Cst_php.expr -> unit;
  2. kstmt : ((Cst_php.stmt -> unit) * visitor_out) -> Cst_php.stmt -> unit;
  3. ktop : ((Cst_php.toplevel -> unit) * visitor_out) -> Cst_php.toplevel -> unit;
  4. kconstant : ((Cst_php.constant -> unit) * visitor_out) -> Cst_php.constant -> unit;
  5. kscalar : ((Cst_php.scalar -> unit) * visitor_out) -> Cst_php.scalar -> unit;
  6. kencaps : ((Cst_php.encaps -> unit) * visitor_out) -> Cst_php.encaps -> unit;
  7. kclass_stmt : ((Cst_php.class_stmt -> unit) * visitor_out) -> Cst_php.class_stmt -> unit;
  8. kparameter : ((Cst_php.parameter -> unit) * visitor_out) -> Cst_php.parameter -> unit;
  9. kargument : ((Cst_php.argument -> unit) * visitor_out) -> Cst_php.argument -> unit;
  10. kcatch : ((Cst_php.catch -> unit) * visitor_out) -> Cst_php.catch -> unit;
  11. kfinally : ((Cst_php.finally -> unit) * visitor_out) -> Cst_php.finally -> unit;
  12. kxhp_html : ((Cst_php.xhp_html -> unit) * visitor_out) -> Cst_php.xhp_html -> unit;
  13. kxhp_tag : ((Cst_php.xhp_tag Cst_php.wrap -> unit) * visitor_out) -> Cst_php.xhp_tag Cst_php.wrap -> unit;
  14. kxhp_attribute : ((Cst_php.xhp_attribute -> unit) * visitor_out) -> Cst_php.xhp_attribute -> unit;
  15. kxhp_attr_decl : ((Cst_php.xhp_attribute_decl -> unit) * visitor_out) -> Cst_php.xhp_attribute_decl -> unit;
  16. kxhp_children_decl : ((Cst_php.xhp_children_decl -> unit) * visitor_out) -> Cst_php.xhp_children_decl -> unit;
  17. kfunc_def : ((Cst_php.func_def -> unit) * visitor_out) -> Cst_php.func_def -> unit;
  18. kclass_def : ((Cst_php.class_def -> unit) * visitor_out) -> Cst_php.class_def -> unit;
  19. kmethod_def : ((Cst_php.method_def -> unit) * visitor_out) -> Cst_php.method_def -> unit;
  20. kstmt_and_def_list_scope : ((Cst_php.stmt_and_def list -> unit) * visitor_out) -> Cst_php.stmt_and_def list -> unit;
  21. kname : ((Cst_php.name -> unit) * visitor_out) -> Cst_php.name -> unit;
  22. khint_type : ((Cst_php.hint_type -> unit) * visitor_out) -> Cst_php.hint_type -> unit;
  23. ktparam : ((Cst_php.type_param -> unit) * visitor_out) -> Cst_php.type_param -> unit;
  24. karray_pair : ((Cst_php.array_pair -> unit) * visitor_out) -> Cst_php.array_pair -> unit;
  25. karguments : ((Cst_php.argument Cst_php.comma_list Cst_php.paren -> unit) * visitor_out) -> Cst_php.argument Cst_php.comma_list Cst_php.paren -> unit;
  26. kcomma : ((Cst_php.tok -> unit) * visitor_out) -> Cst_php.tok -> unit;
  27. kinfo : ((Cst_php.tok -> unit) * visitor_out) -> Cst_php.tok -> unit;
}
and visitor_out = Cst_php.any -> unit
val default_visitor : visitor_in
val mk_visitor : visitor_in -> visitor_out
val do_visit_with_ref : ('a list ref -> visitor_in) -> Cst_php.any -> 'a list