changes based on Python review

This commit is contained in:
erik-krogh
2022-12-19 11:20:31 +01:00
parent 35e8d6afd4
commit 6c8b1cf4be
2 changed files with 2 additions and 6 deletions

View File

@@ -858,7 +858,7 @@ module Impl implements RegexTreeViewSig {
* ```
*/
class RegExpAnchor extends RegExpSpecialChar {
RegExpAnchor() { this.getChar() = ["^", "$"] }
RegExpAnchor() { this.getChar() = ["\\A", "^", "$", "\\Z"] }
}
/**