rong_jscore 0.2.0

JavaScriptCore backend for RongJS
1
2
3
4
5
6
7
8
9
10
11
12
13
mod class;
mod context;
mod runtime;
mod value;

mod jsc {
    // Native low-level bindings
    pub use rong_jscore_sys::*;
}

pub use context::JSCContext;
pub use runtime::{JSCRuntime, JavaScriptCore};
pub use value::JSCValue;