You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update parse-tree-patterns.md
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update docs/contributing/parse-tree-patterns.md
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Pokey Rule <[email protected]>
| Dot operator(`.`) | Type hierarchy between parent and child |
13
-
| Wildcard op(`*`) | Match any type |
14
-
| Negation op(`~`) | Match any type other than what is specified after `~`|
15
-
| Important op(`!`) | Use this node as result instead of parent.<br/>By default the leftmost/top node is used |
16
-
| Optional op(`?`) | Node is optional. Will match if available. |
17
-
| Field op(`[field]`) | Get child field node for resulting node.<br/>Only evaluated on the resulting node at the end.<br/>`node.childForFieldName(field)`|
0 commit comments