diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2025-05-16 17:43:03 +0200 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2025-05-16 17:43:03 +0200 |
commit | d7cdfdc8d7b8e74a6be74f4f3535ef6eac976dc1 (patch) | |
tree | 8d42c1f5a55f57a03d187f75bb90f8296d7f12a0 /quickjs-atom.h | |
parent | a8b2d7c2b2751130000b74ac7d831fd75a0abbc3 (diff) | |
download | quickjs-d7cdfdc8d7b8e74a6be74f4f3535ef6eac976dc1.tar.gz quickjs-d7cdfdc8d7b8e74a6be74f4f3535ef6eac976dc1.zip |
regexp: added v flag support - fixed corner cases of case insensitive matching
Diffstat (limited to 'quickjs-atom.h')
-rw-r--r-- | quickjs-atom.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/quickjs-atom.h b/quickjs-atom.h index 5e46d1b..425c2e9 100644 --- a/quickjs-atom.h +++ b/quickjs-atom.h @@ -177,6 +177,12 @@ DEF(minus_zero, "-0") DEF(Infinity, "Infinity") DEF(minus_Infinity, "-Infinity") DEF(NaN, "NaN") +DEF(hasIndices, "hasIndices") +DEF(ignoreCase, "ignoreCase") +DEF(multiline, "multiline") +DEF(dotAll, "dotAll") +DEF(sticky, "sticky") +DEF(unicodeSets, "unicodeSets") /* the following 3 atoms are only used with CONFIG_ATOMICS */ DEF(not_equal, "not-equal") DEF(timed_out, "timed-out") |