permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / camltococci.cocci
CommitLineData
413ffc02
C
1@a@
2identifier x;
3@@
4
5foo(x);
6
7@script:ocaml b@
8x << a.x;
9y;
10z;
11@@
12
13y := x;
14z := "something"
15
16@c@
17identifier b.y;
18identifier b.z;
19identifier a.x;
20@@
21
22- bar();
23+ matched_bar(y,z,x);