summaryrefslogtreecommitdiffstats
path: root/js/src/jsapi.h
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-06-12 09:56:41 +0000
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-06-12 09:56:41 +0000
commitec96ef3b7712da562d9f2f26c4099a5700c4eea4 (patch)
treea3aac09bdeceabc2357f1aef6bbfce144d6af2a9 /js/src/jsapi.h
parent93ce7c7372b20f6e6c6778f9c196b723a1df27a8 (diff)
downloadUXP-ec96ef3b7712da562d9f2f26c4099a5700c4eea4.tar
UXP-ec96ef3b7712da562d9f2f26c4099a5700c4eea4.tar.gz
UXP-ec96ef3b7712da562d9f2f26c4099a5700c4eea4.tar.lz
UXP-ec96ef3b7712da562d9f2f26c4099a5700c4eea4.tar.xz
UXP-ec96ef3b7712da562d9f2f26c4099a5700c4eea4.zip
Remove unboxed array context option and shell flag.
Diffstat (limited to 'js/src/jsapi.h')
-rw-r--r--js/src/jsapi.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/js/src/jsapi.h b/js/src/jsapi.h
index 005d2278e..3f65dad34 100644
--- a/js/src/jsapi.h
+++ b/js/src/jsapi.h
@@ -1093,7 +1093,6 @@ class JS_PUBLIC_API(ContextOptions) {
wasmAlwaysBaseline_(false),
throwOnAsmJSValidationFailure_(false),
nativeRegExp_(true),
- unboxedArrays_(false),
asyncStack_(true),
throwOnDebuggeeWouldRun_(true),
dumpStackOnDebuggeeWouldRun_(false),
@@ -1170,12 +1169,6 @@ class JS_PUBLIC_API(ContextOptions) {
return *this;
}
- bool unboxedArrays() const { return unboxedArrays_; }
- ContextOptions& setUnboxedArrays(bool flag) {
- unboxedArrays_ = flag;
- return *this;
- }
-
bool asyncStack() const { return asyncStack_; }
ContextOptions& setAsyncStack(bool flag) {
asyncStack_ = flag;
@@ -1238,7 +1231,6 @@ class JS_PUBLIC_API(ContextOptions) {
bool wasmAlwaysBaseline_ : 1;
bool throwOnAsmJSValidationFailure_ : 1;
bool nativeRegExp_ : 1;
- bool unboxedArrays_ : 1;
bool asyncStack_ : 1;
bool throwOnDebuggeeWouldRun_ : 1;
bool dumpStackOnDebuggeeWouldRun_ : 1;