mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:08:10 +00:00
LibWeb: Add {de}serialization steps for RegExpObjects
We skip serializing any of the internal state of the Regex<ECMA262> object, because that state is all computable from the input pattern and flags. If it turns out that this is really, really slow, we can add some optimizations to serialize more of the regex parse result.
This commit is contained in:
parent
3a74bd2509
commit
267074cd81
3 changed files with 25 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
println(structuredClone(new String("This is a String object")));
|
||||
println(structuredClone(BigInt("0x1fffffffffffff")));
|
||||
println(structuredClone(Date.UTC(2023, 7, 23)));
|
||||
println(structuredClone(/abc/gimsuy));
|
||||
|
||||
try {
|
||||
structuredClone(Symbol("foo"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue