Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at master 30 lines 844 B view raw
1// SPDX-License-Identifier: Apache-2.0 OR MIT 2 3use std::fmt::Display; 4 5use proc_macro2::TokenStream; 6use syn::{spanned::Spanned, Error}; 7 8pub(crate) struct DiagCtxt(TokenStream); 9pub(crate) struct ErrorGuaranteed(()); 10 11impl DiagCtxt { 12 pub(crate) fn error(&mut self, span: impl Spanned, msg: impl Display) -> ErrorGuaranteed { 13 let error = Error::new(span.span(), msg); 14 self.0.extend(error.into_compile_error()); 15 ErrorGuaranteed(()) 16 } 17 18 pub(crate) fn with( 19 fun: impl FnOnce(&mut DiagCtxt) -> Result<TokenStream, ErrorGuaranteed>, 20 ) -> TokenStream { 21 let mut dcx = Self(TokenStream::new()); 22 match fun(&mut dcx) { 23 Ok(mut stream) => { 24 stream.extend(dcx.0); 25 stream 26 } 27 Err(ErrorGuaranteed(())) => dcx.0, 28 } 29 } 30}