0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-12-26 09:13:46 -05:00
denoland-rusty-v8/src/script_or_module.rs
2022-09-21 08:15:33 +05:30

43 lines
1.4 KiB
Rust

// Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::Data;
use crate::Local;
use crate::ScriptOrModule;
use crate::Value;
extern "C" {
fn v8__ScriptOrModule__GetResourceName(
this: *const ScriptOrModule,
) -> *const Value;
fn v8__ScriptOrModule__HostDefinedOptions(
this: *const ScriptOrModule,
) -> *const Data;
}
impl ScriptOrModule {
/// The name that was passed by the embedder as ResourceName to the
/// ScriptOrigin. This can be either a v8::String or v8::Undefined.
#[inline(always)]
pub fn get_resource_name(&self) -> Local<Value> {
// Note: the C++ `v8::ScriptOrModule::GetResourceName()` does not actually
// return a local handle, but rather a handle whose lifetime is bound to
// the related `ScriptOrModule` object.
unsafe {
let ptr = v8__ScriptOrModule__GetResourceName(self);
Local::from_raw(ptr).unwrap()
}
}
/// The options that were passed by the embedder as HostDefinedOptions to the
/// ScriptOrigin.
#[inline(always)]
pub fn host_defined_options(&self) -> Local<Data> {
// Note: the C++ `v8::ScriptOrModule::HostDefinedOptions()` does not
// actually return a local handle, but rather a handle whose lifetime is
// bound to the related `ScriptOrModule` object.
unsafe {
let ptr = v8__ScriptOrModule__HostDefinedOptions(self);
Local::from_raw(ptr).unwrap()
}
}
}