0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-12-01 16:51:32 -05:00
denoland-rusty-v8/src/primitives.rs

40 lines
899 B
Rust
Raw Normal View History

use crate::isolate::Isolate;
2019-12-30 09:28:39 -05:00
use crate::Boolean;
use crate::Local;
2019-12-30 09:28:39 -05:00
use crate::Primitive;
extern "C" {
fn v8__Null(isolate: *mut Isolate) -> *const Primitive;
fn v8__Undefined(isolate: *mut Isolate) -> *const Primitive;
fn v8__Boolean__New(isolate: *mut Isolate, value: bool) -> *const Boolean;
}
2022-09-20 22:45:33 -04:00
#[inline(always)]
pub fn null<'a, R>(scope: &mut R) -> Local<'a, Primitive>
where
R: AsMut<Isolate>,
{
unsafe { Local::from_raw_unchecked(v8__Null(scope.as_mut())) }
}
2022-09-20 22:45:33 -04:00
#[inline(always)]
pub fn undefined<'a, R>(scope: &mut R) -> Local<'a, Primitive>
where
R: AsMut<Isolate>,
{
unsafe { Local::from_raw_unchecked(v8__Undefined(scope.as_mut())) }
}
2020-01-04 18:08:27 -05:00
impl Boolean {
2022-09-20 22:45:33 -04:00
#[inline(always)]
pub fn new<'a, R>(scope: &mut R, value: bool) -> Local<'a, Boolean>
where
R: AsMut<Isolate>,
{
unsafe {
Local::from_raw_unchecked(v8__Boolean__New(scope.as_mut(), value))
}
2020-01-04 18:08:27 -05:00
}
}