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/src/vm/CommonPropertyNames.h | |
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/src/vm/CommonPropertyNames.h')
-rw-r--r-- | js/src/vm/CommonPropertyNames.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/src/vm/CommonPropertyNames.h b/js/src/vm/CommonPropertyNames.h index 420ee7535..b4a2de6f3 100644 --- a/js/src/vm/CommonPropertyNames.h +++ b/js/src/vm/CommonPropertyNames.h @@ -160,6 +160,7 @@ macro(getPropertyDescriptor, getPropertyDescriptor, "getPropertyDescriptor") \ macro(getPrototypeOf, getPrototypeOf, "getPrototypeOf") \ macro(global, global, "global") \ + macro(globalThis, globalThis, "globalThis") \ macro(Handle, Handle, "Handle") \ macro(has, has, "has") \ macro(hasOwn, hasOwn, "hasOwn") \ |