123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- virtual context
- virtual org
- virtual report
- @r expression@
- expression E;
- position p;
- @@
- (
- * E@p
- & ... & E
- |
- * E@p
- | ... | E
- |
- * E@p
- & ... & !E
- |
- * E@p
- | ... | !E
- |
- * !E@p
- & ... & E
- |
- * !E@p
- | ... | E
- )
- @script:python depends on org@
- p << r.p;
- @@
- cocci.print_main("duplicated argument to & or |",p)
- @script:python depends on report@
- p << r.p;
- @@
- coccilib.report.print_report(p[0],"duplicated argument to & or |")
|