napi-rs/test_module/src/symbol.rs
LongYinan 1a3621b727
feat(napi): major upgrades for napi@1
1. inline everything
2. change `check_status` and `type_of` to macro
3. provide #[module_exports] macro
4. remove debug and repr[transparent] for ffi struct
2020-11-26 11:31:49 +08:00

24 lines
798 B
Rust

use napi::{CallContext, JsObject, JsString, JsSymbol, Result};
#[js_function]
pub fn create_named_symbol(ctx: CallContext) -> Result<JsSymbol> {
ctx.env.create_symbol(Some("native"))
}
#[js_function]
pub fn create_unnamed_symbol(ctx: CallContext) -> Result<JsSymbol> {
ctx.env.create_symbol(None)
}
#[js_function(1)]
pub fn create_symbol_from_js_string(ctx: CallContext) -> Result<JsSymbol> {
let name = ctx.get::<JsString>(0)?;
ctx.env.create_symbol_from_js_string(name)
}
pub fn register_js(exports: &mut JsObject) -> Result<()> {
exports.create_named_method("createNamedSymbol", create_named_symbol)?;
exports.create_named_method("createUnnamedSymbol", create_unnamed_symbol)?;
exports.create_named_method("createSymbolFromJsString", create_symbol_from_js_string)?;
Ok(())
}