1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

pub const default_heapsize: u32 = 32_u32 * 1024_u32 * 1024_u32;

pub use crate::jsapi::JSCLASS_IS_DOMJSCLASS;
pub use crate::jsapi::JSCLASS_USERBIT1;

pub use crate::jsapi::JSCLASS_RESERVED_SLOTS_MASK;

pub use crate::jsapi::JSCLASS_HIGH_FLAGS_SHIFT;

pub use crate::jsapi::JSCLASS_IS_GLOBAL;

pub use crate::jsapi::JSCLASS_IS_PROXY;

pub use crate::jsapi::JSCLASS_GLOBAL_SLOT_COUNT;