-
Notifications
You must be signed in to change notification settings - Fork 12
/
ast_mapper_class_411.mli
63 lines (58 loc) · 3.08 KB
/
ast_mapper_class_411.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
open Migrate_parsetree.Ast_411
(* This file is part of the ppx_tools package. It is released *)
(* under the terms of the MIT license (see LICENSE file). *)
(* Copyright 2013 Alain Frisch and LexiFi *)
(** Class-based customizable mapper *)
open Parsetree
class mapper:
object
method attribute: attribute -> attribute
method attributes: attribute list -> attribute list
method binding_op: binding_op -> binding_op
method case: case -> case
method cases: case list -> case list
method class_declaration: class_declaration -> class_declaration
method class_description: class_description -> class_description
method class_expr: class_expr -> class_expr
method class_field: class_field -> class_field
method class_signature: class_signature -> class_signature
method class_structure: class_structure -> class_structure
method class_type: class_type -> class_type
method class_type_declaration: class_type_declaration -> class_type_declaration
method class_type_field: class_type_field -> class_type_field
method constant: constant -> constant
method constructor_arguments: constructor_arguments -> constructor_arguments
method constructor_declaration: constructor_declaration -> constructor_declaration
method expr: expression -> expression
method extension: extension -> extension
method extension_constructor: extension_constructor -> extension_constructor
method include_declaration: include_declaration -> include_declaration
method include_description: include_description -> include_description
method label_declaration: label_declaration -> label_declaration
method location: Location.t -> Location.t
method module_binding: module_binding -> module_binding
method module_declaration: module_declaration -> module_declaration
method module_substitution: module_substitution -> module_substitution
method module_expr: module_expr -> module_expr
method module_type: module_type -> module_type
method module_type_declaration: module_type_declaration -> module_type_declaration
method open_declaration: open_declaration -> open_declaration
method open_description: open_description -> open_description
method pat: pattern -> pattern
method payload: payload -> payload
method signature: signature -> signature
method signature_item: signature_item -> signature_item
method structure: structure -> structure
method structure_item: structure_item -> structure_item
method typ: core_type -> core_type
method type_declaration: type_declaration -> type_declaration
method type_exception: type_exception -> type_exception
method type_extension: type_extension -> type_extension
method type_kind: type_kind -> type_kind
method value_binding: value_binding -> value_binding
method value_description: value_description -> value_description
method with_constraint: with_constraint -> with_constraint
end
val to_mapper: #mapper -> Ast_mapper.mapper
(** The resulting mapper is "closed", i.e. methods ignore
their first argument. *)