Include Element Patterns in content updates, fix method reference to show without highlighting

This commit is contained in:
Patrick Scheibe 2021-03-11 01:42:29 +01:00
parent b0eb2ac9f5
commit 2dd4b5b1d5
2 changed files with 8 additions and 1 deletions

View File

@ -92,7 +92,7 @@ Note that finding an identifiable part of a pattern can be achieved by setting a
Using the Markdown code example from above, we note that the `MarkdownLinkDestinationImpl` class is used in the element pattern.
Now, set a breakpoint at:
```java
```text
com.intellij.patterns.ElementPattern#accepts(
java.lang.Object,
com.intellij.util.ProcessingContext

View File

@ -6,6 +6,13 @@ Follow [JBPlatform](https://twitter.com/JBPlatform/) on Twitter and visit [JetBr
See [GitHub Changelog](https://github.com/JetBrains/intellij-sdk-docs/commits/main) ([RSS](https://github.com/JetBrains/intellij-sdk-docs/commits/main.atom)) for a detailed changelog.
## 2021
### March-21
Element Patterns
: Add a new section about [Element Patterns](element_patterns.md) that are used when implementing [Completion Contributors](completion_contributor.md) or [PSI Reference Contributors](psi_references.md#contributed-references).
## 2020
### December-20