diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-12-14 09:22:48 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-12-17 06:25:28 -0500 |
commit | 5bdfdb678d4063f77392d5029b9803c8cdc6f248 (patch) | |
tree | e9edbaddf0c3cd48fe05765d519e665c019f3e02 /js/src/jsfriendapi.h | |
parent | 580dfb2afbef15764b56714f3eb690a67f0af9c1 (diff) | |
download | uxp-5bdfdb678d4063f77392d5029b9803c8cdc6f248.tar.gz |
Bug 1331092 - Part 9: Implement for-await-of.
Tag #1287
Diffstat (limited to 'js/src/jsfriendapi.h')
-rw-r--r-- | js/src/jsfriendapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/src/jsfriendapi.h b/js/src/jsfriendapi.h index 4912154565..7b59689ffd 100644 --- a/js/src/jsfriendapi.h +++ b/js/src/jsfriendapi.h @@ -948,6 +948,7 @@ IsObjectInContextCompartment(JSObject* obj, const JSContext* cx); #define JSITER_HIDDEN 0x10 /* also enumerate non-enumerable properties */ #define JSITER_SYMBOLS 0x20 /* also include symbol property keys */ #define JSITER_SYMBOLSONLY 0x40 /* exclude string property keys */ +#define JSITER_FORAWAITOF 0x80 /* for-await-of */ JS_FRIEND_API(bool) RunningWithTrustedPrincipals(JSContext* cx); |