mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-12 01:20:14 +00:00
Originally, when the Rust upstream `alloc` standard library crate was
vendored in commit 057b8d257107 ("rust: adapt `alloc` crate to the
kernel"), the SPDX License Identifiers were added to every file so that
the license on those was clear.
Thus do the same for the `syn` crate.
This makes `scripts/spdxcheck.py` pass.
Reviewed-by: Gary Guo <gary@garyguo.net>
Tested-by: Gary Guo <gary@garyguo.net>
Tested-by: Jesung Yang <y.j3ms.n@gmail.com>
Link: https://patch.msgid.link/20251124151837.2184382-17-ojeda@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
66 lines
1.2 KiB
Rust
66 lines
1.2 KiB
Rust
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
use proc_macro2::extra::DelimSpan;
|
|
use proc_macro2::{Delimiter, Group, Span, TokenStream};
|
|
|
|
#[doc(hidden)]
|
|
pub trait IntoSpans<S> {
|
|
fn into_spans(self) -> S;
|
|
}
|
|
|
|
impl IntoSpans<Span> for Span {
|
|
fn into_spans(self) -> Span {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<[Span; 1]> for Span {
|
|
fn into_spans(self) -> [Span; 1] {
|
|
[self]
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<[Span; 2]> for Span {
|
|
fn into_spans(self) -> [Span; 2] {
|
|
[self, self]
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<[Span; 3]> for Span {
|
|
fn into_spans(self) -> [Span; 3] {
|
|
[self, self, self]
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<[Span; 1]> for [Span; 1] {
|
|
fn into_spans(self) -> [Span; 1] {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<[Span; 2]> for [Span; 2] {
|
|
fn into_spans(self) -> [Span; 2] {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<[Span; 3]> for [Span; 3] {
|
|
fn into_spans(self) -> [Span; 3] {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<DelimSpan> for Span {
|
|
fn into_spans(self) -> DelimSpan {
|
|
let mut group = Group::new(Delimiter::None, TokenStream::new());
|
|
group.set_span(self);
|
|
group.delim_span()
|
|
}
|
|
}
|
|
|
|
impl IntoSpans<DelimSpan> for DelimSpan {
|
|
fn into_spans(self) -> DelimSpan {
|
|
self
|
|
}
|
|
}
|