Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bullet points in docs of shortcut API #1544

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/docs/GettingStarted/shortcuts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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
Expand Down