Class Impl::RegExpTerm
A regular expression term, that is, a syntactic part of a regular expression. These are the tree nodes that form the parse tree of a regular expression literal.
Import path
import semmle.code.java.regex.RegexTreeViewDirect supertypes
Indirect supertypes
Known direct subtypes
Predicates
| getEnd | Gets the offset at which this term ends. |
| getFile | Gets the file in which this term is found. |
| getLiteral | Gets the string literal in which this term is found. |
| getLocation | Gets the location of the surrounding regex, as locations inside the regex do not exist. To get location information corresponding to the term inside the regex, use |
| getParent | Gets the parent term of this regular expression term, or the regular expression literal if this is the root term. |
| getPredecessor | Gets the regular expression term that is matched (textually) before this one, if any. |
| getPrimaryQLClass | Gets the primary QL class for this term. |
| getRawValue | Gets the raw source text of this term. |
| getRegex | Gets the associated regex. |
| getRootTerm | Gets the outermost term of this regular expression. |
| getStart | Gets the offset at which this term starts. |
| getSuccessor | Gets the regular expression term that is matched (textually) after this one, if any. |
| hasLocationInfo | Holds if this term is found at the specified location offsets. |
| isRootTerm | Holds if this is the root term of a regular expression. |
| isUsedAsRegExp | Holds if this term is part of a string literal that is interpreted as a regular expression. |
| occursInRegex | Holds if this term occurs in regex |
| toString | Gets a textual representation of this element. |
Inherited predicates
| getAChild | Gets a child term . | from RegExpParent |
| getChild | Gets the | from RegExpParent |
| getLastChild | Gets the last child term of this element. | from RegExpParent |
| getNumChild | Gets the number of child terms. | from RegExpParent |