add qldoc to RegExpCharEscape

This commit is contained in:
erik-krogh
2022-12-17 17:28:07 +01:00
parent 26c5480ee6
commit ba7321ac5c
3 changed files with 27 additions and 0 deletions

View File

@@ -561,6 +561,15 @@ module Impl implements RegexTreeViewSig {
}
}
/**
* A character escape in a regular expression.
*
* Example:
*
* ```
* \.
* ```
*/
class RegExpCharEscape = RegExpEscape;
/**