From 2110897571ea7d8a34d267c88fcf321865dad317 Mon Sep 17 00:00:00 2001 From: Alexander Kuechler Date: Tue, 23 Apr 2024 08:57:01 +0200 Subject: [PATCH] Bullet points in docs of shortcut API --- docs/docs/GettingStarted/shortcuts.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/GettingStarted/shortcuts.md b/docs/docs/GettingStarted/shortcuts.md index 6875de5ff8a..6913e021bdc 100644 --- a/docs/docs/GettingStarted/shortcuts.md +++ b/docs/docs/GettingStarted/shortcuts.md @@ -27,6 +27,7 @@ We provide the following shortcuts to gain a quick overview of relevant types of nodes: Starting from node `n`... + * ...get all function/method calls with `n.calls` * ...get all member calls (i.e., calls which are called on an object or class) with `n.mcalls` @@ -45,6 +46,7 @@ Starting from node `n`... The lists you get here can be quite long and it's a good idea to filter them. To do so, we provide different operators: + * To retrieve a single element, you can use the `[]` (get) operator and specify your criterion inside the brackets. * To retrieve a single element and get an exception if there are multiple