Release coccinelle-0.2.3rc1
[bpt/coccinelle.git] / parsing_cocci / visitor_ast.mli
index e1d561a..9407c0d 100644 (file)
@@ -1,3 +1,47 @@
+(*
+ * Copyright 2005-2010, Ecole des Mines de Nantes, University of Copenhagen
+ * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
+ * This file is part of Coccinelle.
+ *
+ * Coccinelle is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, according to version 2 of the License.
+ *
+ * Coccinelle is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Coccinelle.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * The authors reserve the right to distribute this or future versions of
+ * Coccinelle under other licenses.
+ *)
+
+
+(*
+ * Copyright 2005-2010, Ecole des Mines de Nantes, University of Copenhagen
+ * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
+ * This file is part of Coccinelle.
+ *
+ * Coccinelle is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, according to version 2 of the License.
+ *
+ * Coccinelle is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Coccinelle.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * The authors reserve the right to distribute this or future versions of
+ * Coccinelle under other licenses.
+ *)
+
+
 type 'a combiner =
     {combiner_ident : Ast_cocci.ident -> 'a;
      combiner_expression : Ast_cocci.expression -> 'a;
@@ -24,7 +68,7 @@ type ('cd,'a) ccode = 'a combiner -> ('cd -> 'a) -> 'cd -> 'a
 
 val combiner :
     ('a -> 'a -> 'a) -> 'a ->
-      (((string*string),'a) cmcode) ->
+      ((Ast_cocci.meta_name,'a) cmcode) ->
       ((string,'a) cmcode) ->
       ((Ast_cocci.constant,'a) cmcode) ->
       ((Ast_cocci.assignOp,'a) cmcode) ->
@@ -32,7 +76,6 @@ val combiner :
       ((Ast_cocci.unaryOp,'a) cmcode) ->
       ((Ast_cocci.binaryOp,'a) cmcode) ->
       ((Ast_cocci.const_vol,'a) cmcode) ->
-      ((Ast_cocci.baseType,'a) cmcode) ->
       ((Ast_cocci.sign,'a) cmcode) ->
       ((Ast_cocci.structUnion,'a) cmcode) ->
       ((Ast_cocci.storage,'a) cmcode) ->
@@ -82,7 +125,7 @@ type 'mc rmcode = 'mc Ast_cocci.mcode inout
 type 'cd rcode = rebuilder -> ('cd inout) -> 'cd inout
 
 val rebuilder :
-    ((string*string) rmcode) ->
+    (Ast_cocci.meta_name rmcode) ->
     (string rmcode) ->
     (Ast_cocci.constant rmcode) ->
     (Ast_cocci.assignOp rmcode) ->
@@ -90,7 +133,6 @@ val rebuilder :
     (Ast_cocci.unaryOp rmcode) ->
     (Ast_cocci.binaryOp rmcode) ->
     (Ast_cocci.const_vol rmcode) ->
-    (Ast_cocci.baseType rmcode) ->
     (Ast_cocci.sign rmcode) ->
     (Ast_cocci.structUnion rmcode) ->
     (Ast_cocci.storage rmcode) ->