~npalix/coccinelle/upstream

« back to all changes in this revision

Viewing changes to parsing_c/visitor_c.mli

  • Committer: Nicolas Palix
  • Date: 2010-01-28 14:23:49 UTC
  • Revision ID: git-v1:70d17887795852eca805bfe27745b9810c0a39be
Remove trailing whitespace/tab

svn path=/coccinelle/; revision=8684

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  kstatementseq: (statement_sequencable   -> unit) * visitor_c -> statement_sequencable   -> unit;
20
20
 
21
21
 
22
 
  knode:      
 
22
  knode:
23
23
    (Control_flow_c.node -> unit) * visitor_c -> Control_flow_c.node -> unit;
24
24
  ktoplevel: (toplevel -> unit) * visitor_c -> toplevel -> unit;
25
25
 
47
47
val vk_args_splitted : visitor_c -> (argument, il) Common.either list -> unit
48
48
val vk_param : visitor_c -> parameterType -> unit
49
49
val vk_param_list : visitor_c -> parameterType wrap2 list -> unit
50
 
val vk_params_splitted : 
 
50
val vk_params_splitted :
51
51
  visitor_c -> (parameterType, il) Common.either list -> unit
52
52
 
53
53
val vk_struct_fields : visitor_c -> field list -> unit
55
55
 
56
56
val vk_cst : visitor_c -> ((constant, string) Common.either wrap) -> unit
57
57
 
58
 
val vk_define_params_splitted : 
 
58
val vk_define_params_splitted :
59
59
  visitor_c -> (string Ast_c.wrap, il) Common.either list -> unit
60
60
 
61
61
 
76
76
  kcppdirective_s : (cpp_directive inout * visitor_c_s) -> cpp_directive inout;
77
77
  kdefineval_s : (define_val inout * visitor_c_s) -> define_val inout;
78
78
  kstatementseq_s: (statement_sequencable inout * visitor_c_s) -> statement_sequencable inout;
79
 
  kstatementseq_list_s: 
 
79
  kstatementseq_list_s:
80
80
    (statement_sequencable list inout * visitor_c_s) -> statement_sequencable list inout;
81
81
 
82
 
  knode_s      : 
 
82
  knode_s      :
83
83
    Control_flow_c.node inout * visitor_c_s -> Control_flow_c.node    inout;
84
84
  ktoplevel_s  : toplevel inout * visitor_c_s -> toplevel inout;
85
85
 
102
102
val vk_node_s : visitor_c_s -> Control_flow_c.node -> Control_flow_c.node
103
103
val vk_program_s  : visitor_c_s -> program -> program
104
104
 
105
 
val vk_arguments_s : 
106
 
  visitor_c_s -> 
 
105
val vk_arguments_s :
 
106
  visitor_c_s ->
107
107
  argument wrap2 list -> argument wrap2 list
108
108
 
109
 
val vk_args_splitted_s : 
110
 
  visitor_c_s -> 
111
 
  (argument, il) Common.either list -> 
 
109
val vk_args_splitted_s :
 
110
  visitor_c_s ->
 
111
  (argument, il) Common.either list ->
112
112
  (argument, il) Common.either list
113
113
 
114
 
val vk_params_s : 
115
 
  visitor_c_s -> 
 
114
val vk_params_s :
 
115
  visitor_c_s ->
116
116
  parameterType wrap2 list -> parameterType wrap2 list
117
117
 
118
 
val vk_params_splitted_s : 
119
 
  visitor_c_s -> 
120
 
  (parameterType, il) Common.either list -> 
 
118
val vk_params_splitted_s :
 
119
  visitor_c_s ->
 
120
  (parameterType, il) Common.either list ->
121
121
  (parameterType, il) Common.either list
122
122
 
123
123
 
124
124
 
125
125
val vk_param_s : visitor_c_s -> parameterType -> parameterType
126
126
 
127
 
val vk_define_params_splitted_s : 
128
 
  visitor_c_s -> 
129
 
  (string Ast_c.wrap, il) Common.either list -> 
 
127
val vk_define_params_splitted_s :
 
128
  visitor_c_s ->
 
129
  (string Ast_c.wrap, il) Common.either list ->
130
130
  (string Ast_c.wrap, il) Common.either list
131
131
 
132
132
val vk_struct_fields_s : visitor_c_s -> field list -> field list
133
133
 
134
 
val vk_cst_s : visitor_c_s -> ((constant, string) Common.either wrap) inout 
 
134
val vk_cst_s : visitor_c_s -> ((constant, string) Common.either wrap) inout