chore: add vendor dependencies for kauma build
This commit is contained in:
parent
7c94e5d8fb
commit
067ef6141c
1758 changed files with 398473 additions and 0 deletions
50
vendor/quote/src/spanned.rs
vendored
Normal file
50
vendor/quote/src/spanned.rs
vendored
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
use crate::ToTokens;
|
||||
use proc_macro2::extra::DelimSpan;
|
||||
use proc_macro2::{Span, TokenStream};
|
||||
|
||||
// Not public API other than via the syn crate. Use syn::spanned::Spanned.
|
||||
pub trait Spanned: private::Sealed {
|
||||
fn __span(&self) -> Span;
|
||||
}
|
||||
|
||||
impl Spanned for Span {
|
||||
fn __span(&self) -> Span {
|
||||
*self
|
||||
}
|
||||
}
|
||||
|
||||
impl Spanned for DelimSpan {
|
||||
fn __span(&self) -> Span {
|
||||
self.join()
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: ?Sized + ToTokens> Spanned for T {
|
||||
fn __span(&self) -> Span {
|
||||
join_spans(self.into_token_stream())
|
||||
}
|
||||
}
|
||||
|
||||
fn join_spans(tokens: TokenStream) -> Span {
|
||||
let mut iter = tokens.into_iter().map(|tt| tt.span());
|
||||
|
||||
let first = match iter.next() {
|
||||
Some(span) => span,
|
||||
None => return Span::call_site(),
|
||||
};
|
||||
|
||||
iter.fold(None, |_prev, next| Some(next))
|
||||
.and_then(|last| first.join(last))
|
||||
.unwrap_or(first)
|
||||
}
|
||||
|
||||
mod private {
|
||||
use crate::ToTokens;
|
||||
use proc_macro2::extra::DelimSpan;
|
||||
use proc_macro2::Span;
|
||||
|
||||
pub trait Sealed {}
|
||||
impl Sealed for Span {}
|
||||
impl Sealed for DelimSpan {}
|
||||
impl<T: ?Sized + ToTokens> Sealed for T {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue