RegExp: javadoc update

GitOrigin-RevId: 0b7fbd4866f7128195facb6fd0272bd1d293fdcc
This commit is contained in:
Bas Leijdekkers
2020-10-28 15:48:05 +01:00
committed by intellij-monorepo-bot
parent 0ab04879ba
commit 5958ca6260

View File

@@ -21,11 +21,12 @@ public interface RegExpBackref extends RegExpAtom {
/**
* Returns the group-index the backref refers to
* Could be negative for relative references: {@link org.intellij.lang.regexp.RegExpCapability#PCRE_BACK_REFERENCES}
* @return the index of the group this backref refers to
*/
int getIndex();
/**
* The referenced group, or null if no such group exists
* @return The referenced group, or null if no such group exists
*/
@Nullable
RegExpGroup resolve();