2020-11-25 18:42:14 +09:00
|
|
|
use napi::{CallContext, JsObject, JsString, JsSymbol, Result};
|
2020-06-21 20:10:06 +09:00
|
|
|
|
|
|
|
#[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)
|
|
|
|
}
|
2020-09-02 18:05:53 +09:00
|
|
|
|
2020-11-25 18:42:14 +09:00
|
|
|
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)?;
|
2020-09-02 18:05:53 +09:00
|
|
|
Ok(())
|
|
|
|
}
|