We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RegExpEscape::getUnescaped
1 parent 97264b5 commit 62e7295Copy full SHA for 62e7295
python/ql/lib/semmle/python/RegexTreeView.qll
@@ -481,7 +481,7 @@ class RegExpEscape extends RegExpNormalChar {
481
override string getPrimaryQLClass() { result = "RegExpEscape" }
482
483
/** Gets the part of the term following the escape character. That is e.g. "w" if the term is "\w". */
484
- private string getUnescaped() { result = this.getText().suffix(1) }
+ string getUnescaped() { result = this.getText().suffix(1) }
485
486
/**
487
* Gets the text for this escape. That is e.g. "\w".
0 commit comments