e7c94fff59
js/src/jsalloc.h -> js/public/AllocPolicy.h jsalloc.cpp -> js/src/util/AllocPolicy.cpp jsbytecode.h -> merge into js/public/TypeDecls.h jsprf.h -> js/public/Printf.h jsprf.cpp -> js/src/util/Printf.cpp jsprototypes.h -> public/ProtoKey.h jswrapper.h -> js/Wrapper.h --HG-- rename : js/src/jsalloc.h => js/public/AllocPolicy.h rename : js/src/jsprf.h => js/public/Printf.h rename : js/src/jsprototypes.h => js/public/ProtoKey.h rename : js/src/jswrapper.h => js/public/Wrapper.h rename : js/src/jsalloc.cpp => js/src/util/AllocPolicy.cpp rename : js/src/jsprf.cpp => js/src/util/Printf.cpp extra : rebase_source : 98b16d94c469202eab0303a8da844f1d0b6aa809 extra : amend_source : e0b16c1077226d6fe240f4d7096537f93b43f2b8 extra : histedit_source : d94e0ba7904a7d66742c7fac43f638aaec4fa4e5 |
||
---|---|---|
.. | ||
etc | ||
src | ||
tests | ||
.gitignore | ||
CMakeLists.txt | ||
Cargo.lock | ||
Cargo.toml | ||
README.md | ||
build.rs |
README.md
The js
Crate: Rust Bindings to SpiderMonkey
Building
To build a release version of SpiderMonkey and the Rust code with optimizations enabled:
$ cargo build --release
To build with SpiderMonkey's DEBUG checks and assertions:
$ cargo build --features debugmozjs
Raw FFI bindings to JSAPI are machine generated with
rust-lang-nursery/rust-bindgen
, and requires libclang >= 3.9. See
./build.rs
for details.
Cargo Features
-
debugmozjs
: Create a DEBUG build of SpiderMonkey with many extra assertions enabled. This is decoupled from whether the crate and its Rust code is built in debug or release mode. -
promises
: Enable SpiderMonkey native promises. -
nonzero
: Leverage the unstableNonZero
type. Requires nightly Rust.
Testing
Make sure to test both with and without the debugmozjs
feature because various
structures have different sizes and get passed through functions differently at
the ABI level! At minimum, you should test with debugmozjs
to get extra
assertions and checking.
$ cargo test
$ cargo test --features debugmozjs