diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-30 21:14:43 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-30 21:14:43 +0200 |
commit | e5dd97fee34bcd45599b8d2a11e39708857e7868 (patch) | |
tree | 1476a49c647d6febd7b62343ce1988faf29b3a21 /js/public | |
parent | 1cecef624a000983b0e380aa8723056c92f9f4f2 (diff) | |
download | uxp-e5dd97fee34bcd45599b8d2a11e39708857e7868.tar.gz |
Issue #1570 - Implement globalThis
This resolves #1570
Diffstat (limited to 'js/public')
-rw-r--r-- | js/public/Class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/Class.h b/js/public/Class.h index f4fa9ccafb..3d73bce441 100644 --- a/js/public/Class.h +++ b/js/public/Class.h @@ -779,7 +779,7 @@ struct JSClass { // application. #define JSCLASS_GLOBAL_APPLICATION_SLOTS 5 #define JSCLASS_GLOBAL_SLOT_COUNT \ - (JSCLASS_GLOBAL_APPLICATION_SLOTS + JSProto_LIMIT * 2 + 45) + (JSCLASS_GLOBAL_APPLICATION_SLOTS + JSProto_LIMIT * 2 + 46) #define JSCLASS_GLOBAL_FLAGS_WITH_SLOTS(n) \ (JSCLASS_IS_GLOBAL | JSCLASS_HAS_RESERVED_SLOTS(JSCLASS_GLOBAL_SLOT_COUNT + (n))) #define JSCLASS_GLOBAL_FLAGS \ |