Release coccinelle-0.2.0rc1
[bpt/coccinelle.git] / engine / flag_matcher.ml
CommitLineData
485bce71 1let debug_engine = ref false
708f4980
C
2let verbose_matcher = ref true
3
485bce71
C
4
5(* false = simpler formulas, only for debugging *)
6let useEU = ref true
7
8let disallow_nested_exps = ref false
9
10(* if this flag is not set, then break and continue are also error exits *)
11let only_return_is_error_exit = ref false
12
13(* a hack to allow adding code in some more sgrep-like uses *)
14let allow_inconsistent_paths = ref false
15
978fd7e5
C
16(* see the use of this variable in asttoctl2.ml *)
17let no_safe_expressions = ref false
18
485bce71 19let show_misc = ref true
708f4980
C
20
21
22let show_transinfo = ref false
23