File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed
java/ql/lib/semmle/code/java/regex
python/ql/lib/semmle/python
ruby/ql/lib/codeql/ruby/regexp Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -561,6 +561,15 @@ module Impl implements RegexTreeViewSig {
561561 }
562562 }
563563
564+ /**
565+ * A character escape in a regular expression.
566+ *
567+ * Example:
568+ *
569+ * ```
570+ * \.
571+ * ```
572+ */
564573 class RegExpCharEscape = RegExpEscape ;
565574
566575 /**
Original file line number Diff line number Diff line change @@ -457,6 +457,15 @@ module Impl implements RegexTreeViewSig {
457457 override string getPrimaryQLClass ( ) { result = "RegExpAlt" }
458458 }
459459
460+ /**
461+ * A character escape in a regular expression.
462+ *
463+ * Example:
464+ *
465+ * ```
466+ * \.
467+ * ```
468+ */
460469 class RegExpCharEscape = RegExpEscape ;
461470
462471 /**
Original file line number Diff line number Diff line change @@ -539,6 +539,15 @@ private module Impl implements RegexTreeViewSig {
539539 override predicate isNullable ( ) { this .getAChild ( ) .isNullable ( ) }
540540 }
541541
542+ /**
543+ * A character escape in a regular expression.
544+ *
545+ * Example:
546+ *
547+ * ```
548+ * \.
549+ * ```
550+ */
542551 class RegExpCharEscape = RegExpEscape ;
543552
544553 /**
You can’t perform that action at this time.
0 commit comments