diff options
Diffstat (limited to 'test_napi/src')
-rw-r--r-- | test_napi/src/array.rs | 2 | ||||
-rw-r--r-- | test_napi/src/arraybuffer.rs | 2 | ||||
-rw-r--r-- | test_napi/src/async.rs | 2 | ||||
-rw-r--r-- | test_napi/src/callback.rs | 2 | ||||
-rw-r--r-- | test_napi/src/coerce.rs | 2 | ||||
-rw-r--r-- | test_napi/src/lib.rs | 2 | ||||
-rw-r--r-- | test_napi/src/numbers.rs | 2 | ||||
-rw-r--r-- | test_napi/src/object_wrap.rs | 2 | ||||
-rw-r--r-- | test_napi/src/promise.rs | 2 | ||||
-rw-r--r-- | test_napi/src/properties.rs | 2 | ||||
-rw-r--r-- | test_napi/src/strings.rs | 2 | ||||
-rw-r--r-- | test_napi/src/typedarray.rs | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/test_napi/src/array.rs b/test_napi/src/array.rs index 767aa08b1..adb2b426e 100644 --- a/test_napi/src/array.rs +++ b/test_napi/src/array.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_number; diff --git a/test_napi/src/arraybuffer.rs b/test_napi/src/arraybuffer.rs index cf170e713..ce50f914f 100644 --- a/test_napi/src/arraybuffer.rs +++ b/test_napi/src/arraybuffer.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::*; diff --git a/test_napi/src/async.rs b/test_napi/src/async.rs index 53432de7c..d825636e1 100644 --- a/test_napi/src/async.rs +++ b/test_napi/src/async.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_function; diff --git a/test_napi/src/callback.rs b/test_napi/src/callback.rs index bf6062913..4b97f1c0b 100644 --- a/test_napi/src/callback.rs +++ b/test_napi/src/callback.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_function; diff --git a/test_napi/src/coerce.rs b/test_napi/src/coerce.rs index 611540fae..edce7f767 100644 --- a/test_napi/src/coerce.rs +++ b/test_napi/src/coerce.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::*; diff --git a/test_napi/src/lib.rs b/test_napi/src/lib.rs index c1a13f6e4..0bdea0280 100644 --- a/test_napi/src/lib.rs +++ b/test_napi/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. #![allow(clippy::all)] #![allow(clippy::undocumented_unsafe_blocks)] diff --git a/test_napi/src/numbers.rs b/test_napi/src/numbers.rs index a6628af13..8808659f9 100644 --- a/test_napi/src/numbers.rs +++ b/test_napi/src/numbers.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_number; diff --git a/test_napi/src/object_wrap.rs b/test_napi/src/object_wrap.rs index 40189e01c..bedb6d852 100644 --- a/test_napi/src/object_wrap.rs +++ b/test_napi/src/object_wrap.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_number; diff --git a/test_napi/src/promise.rs b/test_napi/src/promise.rs index ebb9dedab..02ea2f237 100644 --- a/test_napi/src/promise.rs +++ b/test_napi/src/promise.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::*; diff --git a/test_napi/src/properties.rs b/test_napi/src/properties.rs index b245fd61d..dafa9ef96 100644 --- a/test_napi/src/properties.rs +++ b/test_napi/src/properties.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::PropertyAttributes::*; use napi_sys::Status::napi_ok; diff --git a/test_napi/src/strings.rs b/test_napi/src/strings.rs index f4139c85a..5029944da 100644 --- a/test_napi/src/strings.rs +++ b/test_napi/src/strings.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_string; diff --git a/test_napi/src/typedarray.rs b/test_napi/src/typedarray.rs index f7d2e2f24..f8b5fd674 100644 --- a/test_napi/src/typedarray.rs +++ b/test_napi/src/typedarray.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use core::ffi::c_void; use napi_sys::Status::napi_ok; |