/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/napi/src/primitives.rs
32 строки
619 B
Kenta Moriuchi
chore: Happy New Year 2026 (#31748)
08 янв 2026, 18:28
Не верифицирован
08 янв 2026, 18:28
8193cf9
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. use std::ptr; use napi_sys::*; use crate::assert_napi_ok; use crate::napi_new_property; extern "C" fn test_get_undefined( env: napi_env, _: napi_callback_info, ) -> napi_value { let mut result = ptr::null_mut(); assert_napi_ok!(napi_get_undefined(env, &mut result)); result } pub fn init(env: napi_env, exports: napi_value) { let properties = &[napi_new_property!( env, "test_get_undefined", test_get_undefined )]; assert_napi_ok!(napi_define_properties( env, exports, properties.len(), properties.as_ptr() )); }