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
|
(*
* 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
*)
(* uses E rather than A and adds comments indicating the start and end of
each matched term *)
let sgrep_mode = ref false (* no longer supported, subsumed by sgrep2 *)
let show_SP = ref false
let show_iso_failures = ref true
(* interpret the patch in an inverted way *)
let interpret_inverted = ref false
let iso_limit = ref (None : int option) (*(Some 3)*)
let disabled_isos = ref ([] : string list)
(* Used to debug embedded ML scripts *)
let keep_ml_script = ref false
let id_utils_index = ref ".id-utils.index" (* default id-utils value *)
let in_minus = ref false
let debug_parse_cocci = ref false
(* When using the parser to generate hardened semantic patches *)
let generating_mode = ref false
|