ladybird/Userland/Libraries/LibJS/Tests/builtins/RegExp
Ali Mohammad Pur 17087ac4a2 LibJS: Unescape incorrectly escaped code units in regex patterns
We were translating the pattern [\⪾-\⫀] to [\\u2abe-\\u2ac0], which
is a very different pattern; as a code unit converted to the \uhhh
format has no meaning when escaped, this commit makes us simply skip
escaping it when translating the pattern.
2023-09-16 15:21:09 +02:00
..
RegExp.js LibJS: Unescape incorrectly escaped code units in regex patterns 2023-09-16 15:21:09 +02:00
RegExp.legacy.js LibJS: Implement RegExp legacy static properties 2022-10-17 17:08:33 +02:00
RegExp.prototype.@@match.js
RegExp.prototype.@@replace.js
RegExp.prototype.compile.js
RegExp.prototype.exec.js
RegExp.prototype.flags.js
RegExp.prototype.hasIndices.js
RegExp.prototype.source.js LibJS: Manually loop over escaped regex pattern instead of ::replace() 2023-02-16 21:03:19 +01:00
RegExp.prototype.test.js
RegExp.prototype.toString.js