diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-30 21:14:43 +0200 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-06-01 11:48:07 +0000 |
commit | 86187199216ea46d879f35b93d7731185bdc598e (patch) | |
tree | 2eb8cf214b8d2020a364bcf01b7ecb030101098e /js/public | |
parent | b6db7da98af264b55161bc93e6020fe404cfc627 (diff) | |
download | UXP-86187199216ea46d879f35b93d7731185bdc598e.tar UXP-86187199216ea46d879f35b93d7731185bdc598e.tar.gz UXP-86187199216ea46d879f35b93d7731185bdc598e.tar.lz UXP-86187199216ea46d879f35b93d7731185bdc598e.tar.xz UXP-86187199216ea46d879f35b93d7731185bdc598e.zip |
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 f4fa9ccaf..3d73bce44 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 \ |