mozjs/consts.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5pub const default_heapsize: u32 = 32_u32 * 1024_u32 * 1024_u32;
6
7pub use crate::jsapi::JSCLASS_IS_DOMJSCLASS;
8pub use crate::jsapi::JSCLASS_USERBIT1;
9
10pub use crate::jsapi::JSCLASS_RESERVED_SLOTS_MASK;
11
12pub use crate::jsapi::JSCLASS_HIGH_FLAGS_SHIFT;
13
14pub use crate::jsapi::JSCLASS_IS_GLOBAL;
15
16pub use crate::jsapi::JSCLASS_IS_PROXY;
17
18pub use crate::jsapi::JSCLASS_GLOBAL_SLOT_COUNT;