summaryrefslogtreecommitdiffstats
path: root/docs/code-quality/static-analysis/writing-new/matcher-cookbook.rst
blob: 9eb0d96c4315593863aaa17a675ac60c7d6de39b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.. _matcher_cookbook:

Matcher Cookbook
=================

This page is designed to be a selection of common ingredients to a more complicated matcher.

.. list-table::
   :widths: 35 65
   :header-rows: 1
   :class: matcher-cookbook

   * - Desired Outcome
     - Syntax
   * - Ignore header files

       *If you have an #include in your example code, your matcher may match things in the header files.*
     - Add **isExpansionInMainFile()** to the matcher.  e.g.

       ``m functionDecl(isExpansionInMainFile())``


*More coming*