1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
(*
* This file is part of Coccinelle, licensed under the terms of the GPL v2.
* See copyright.txt in the Coccinelle source code for more information.
* The Coccinelle source code can be obtained at http://coccinelle.lip6.fr
*)
type cocci_predicate = Lib_engine.predicate * Ast_cocci.meta_name Ast_ctl.modif
type top_formula = NONDECL of Lib_engine.ctlcocci | CODE of Lib_engine.ctlcocci
val asttoctl :
Ast_cocci.rule ->
(Ast_cocci.meta_name list list (* used after *) *
Ast_cocci.meta_name list list (* fresh used after *) *
Ast_cocci.meta_name list list (* fresh used after seeds *)) ->
Ast_cocci.meta_name list list (* positions *) ->
top_formula list
val pp_cocci_predicate : cocci_predicate -> unit
val cocci_predicate_to_string : cocci_predicate -> string
|