diff options
Diffstat (limited to 'serde_v8/magic/u16string.rs')
-rw-r--r-- | serde_v8/magic/u16string.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/serde_v8/magic/u16string.rs b/serde_v8/magic/u16string.rs index 22868ccfb..11554738a 100644 --- a/serde_v8/magic/u16string.rs +++ b/serde_v8/magic/u16string.rs @@ -1,6 +1,9 @@ -use super::transl8::{impl_magic, impl_wrapper, FromV8, ToV8}; +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. + use crate::Error; +use super::transl8::{impl_magic, impl_wrapper, FromV8, ToV8}; + impl_wrapper!( pub struct U16String(Vec<u16>); ); |