2019-12-19 19:15:52 -05:00
|
|
|
use crate::isolate::Isolate;
|
2019-12-30 09:28:39 -05:00
|
|
|
use crate::Boolean;
|
2019-12-05 17:03:18 -05:00
|
|
|
use crate::Local;
|
2019-12-30 09:28:39 -05:00
|
|
|
use crate::Primitive;
|
2019-12-05 17:03:18 -05:00
|
|
|
|
|
|
|
extern "C" {
|
2020-04-13 08:43:56 -04:00
|
|
|
fn v8__Null(isolate: *mut Isolate) -> *const Primitive;
|
|
|
|
fn v8__Undefined(isolate: *mut Isolate) -> *const Primitive;
|
2019-12-05 17:03:18 -05:00
|
|
|
|
2020-04-13 08:43:56 -04:00
|
|
|
fn v8__Boolean__New(isolate: *mut Isolate, value: bool) -> *const Boolean;
|
2019-12-05 17:03:18 -05:00
|
|
|
}
|
|
|
|
|
2022-09-20 22:45:33 -04:00
|
|
|
#[inline(always)]
|
2022-10-06 14:44:16 -04:00
|
|
|
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())) }
|
2019-12-05 17:03:18 -05:00
|
|
|
}
|
|
|
|
|
2022-09-20 22:45:33 -04:00
|
|
|
#[inline(always)]
|
2022-10-06 14:44:16 -04:00
|
|
|
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())) }
|
2019-12-05 17:03:18 -05:00
|
|
|
}
|
|
|
|
|
2020-01-04 18:08:27 -05:00
|
|
|
impl Boolean {
|
2022-09-20 22:45:33 -04:00
|
|
|
#[inline(always)]
|
2022-10-06 14:44:16 -04:00
|
|
|
pub fn new<'a, R>(scope: &mut R, value: bool) -> Local<'a, Boolean>
|
|
|
|
where
|
|
|
|
R: AsMut<Isolate>,
|
|
|
|
{
|
2020-05-31 09:00:23 -04:00
|
|
|
unsafe {
|
2022-10-06 14:44:16 -04:00
|
|
|
Local::from_raw_unchecked(v8__Boolean__New(scope.as_mut(), value))
|
2020-05-31 09:00:23 -04:00
|
|
|
}
|
2020-01-04 18:08:27 -05:00
|
|
|
}
|
2019-12-05 17:03:18 -05:00
|
|
|
}
|