ladybird/Userland/Libraries/LibJS/Tests/builtins/RegExp
Ali Mohammad Pur bcfbe0fbf7 LibJS: Manually loop over escaped regex pattern instead of ::replace()
This makes it ever-so-slightly faster, but more importantly, it fixes
the bug where a `/\//` regex's `source` property would return `\\/`
("\\\\/") instead of `\/` due to the existing '/' -> '\/' replace()
call.
2023-02-16 21:03:19 +01:00
..
RegExp.js
RegExp.legacy.js
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
RegExp.prototype.test.js
RegExp.prototype.toString.js