summaryrefslogtreecommitdiff
path: root/js/public/Class.h
diff options
context:
space:
mode:
authorMartok <martok@martoks-place.de>2023-06-29 23:07:51 +0200
committerMartok <martok@martoks-place.de>2023-06-30 00:01:35 +0200
commit1a9d6d6372fb1fc585e21af53ccfafd6f89eda73 (patch)
treef5780e47a59bbbf9408147ecbda630897bfac96d /js/public/Class.h
parent2f940bdc9dcbfe83e17ed26c5d1af7fe874c24ac (diff)
downloaduxp-1a9d6d6372fb1fc585e21af53ccfafd6f89eda73.tar.gz
Issue #1819 - Implement Intl.Locale proposal
This is according to spec for the mozilla71 cycle, a follow-up will further adjust to spec. - Add Intl.Locale as native C++ - Port Unicode BCP 47 locale identifier parser to C++ - Port language tag parser to C++ - adjust make_intl_data to generate the data Based-on: m-c 1433303, 1570370
Diffstat (limited to 'js/public/Class.h')
-rw-r--r--js/public/Class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/Class.h b/js/public/Class.h
index 1c785646e3..f1d7739718 100644
--- a/js/public/Class.h
+++ b/js/public/Class.h
@@ -913,7 +913,7 @@ struct JSClass {
// application.
#define JSCLASS_GLOBAL_APPLICATION_SLOTS 5
#define JSCLASS_GLOBAL_SLOT_COUNT \
- (JSCLASS_GLOBAL_APPLICATION_SLOTS + JSProto_LIMIT * 2 + 49)
+ (JSCLASS_GLOBAL_APPLICATION_SLOTS + JSProto_LIMIT * 2 + 50)
#define JSCLASS_GLOBAL_FLAGS_WITH_SLOTS(n) \
(JSCLASS_IS_GLOBAL | JSCLASS_HAS_RESERVED_SLOTS(JSCLASS_GLOBAL_SLOT_COUNT + (n)))
#define JSCLASS_GLOBAL_FLAGS \