summaryrefslogtreecommitdiff
path: root/doc/source/config.rst
diff options
context:
space:
mode:
authorjvoisin2020-11-29 19:37:49 +0100
committerGitHub2020-11-29 18:37:49 +0000
commit5be9082f148ab546a0317a28ef5267bb797feb53 (patch)
tree60461e4365ac69434a5529c6efa10faefc63f39f /doc/source/config.rst
parent83b631a183c1df4233438459cb3386b715e4f2b3 (diff)
Make the `>` operator skip over functions
Diffstat (limited to 'doc/source/config.rst')
-rw-r--r--doc/source/config.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/source/config.rst b/doc/source/config.rst
index dd30723..258b1ab 100644
--- a/doc/source/config.rst
+++ b/doc/source/config.rst
@@ -328,7 +328,8 @@ The ``function`` filter is able to do various dereferencing:
328- ``function("AwesomeNamespace\\my_function")`` will match the function ``my_function`` in the namespace ``AwesomeNamespace`` 328- ``function("AwesomeNamespace\\my_function")`` will match the function ``my_function`` in the namespace ``AwesomeNamespace``
329 329
330It's also able to have calltrace constrains: ``function(func1>func2)`` will 330It's also able to have calltrace constrains: ``function(func1>func2)`` will
331match only if ``func2`` is called **inside** of ``func1``. 331match only if ``func2`` is called **inside** of ``func1``. Do note that their
332might be other functions called between them.
332 333
333The ``param`` filter is able to do some dereferencing as well: 334The ``param`` filter is able to do some dereferencing as well:
334 335