Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/proc-macro-error-attr2/src/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 2 kB image not shown  

Quelle  settings.rs

  Sprache: Rust
 

use crate::{Error, Result};
use proc_macro2::{Ident, Span, TokenStream, TokenTree};

macro_rules! decl_settings {
    ($($val:expr => $variant:ident),+ $(,)*) => {
        #[derive(PartialEq, Clone, Copy)]
        pub(crateenum Setting {
            $($variant),*
        }

        fn ident_to_setting(ident: Ident) -> Result<Setting> {
            match &*ident.to_string() {
                $($val => Ok(Setting::$variant),)*
                _ => {
                    let possible_vals = [$($val),*]
                        .iter()
                        .map(|v| format!("`{}`", v))
                        .collect::<Vec<_>>()
                        .join(", ");

                    Err(Error::new(
                        ident.span(),
                        format!("unknown setting `{}`, expected one of {}", ident, possible_vals)))
                }
            }
        }
    };
}

decl_settings! {
    "assert_unwind_safe" => AssertUnwindSafe,
    "allow_not_macro"    => AllowNotMacro,
    "proc_macro_hack"    => ProcMacroHack,
}

pub(cratefn parse_settings(input: TokenStream) -> Result<Settings> {
    let mut input = input.into_iter();
    let mut res = Settings(Vec::new());
    loop {
        match input.next() {
            Some(TokenTree::Ident(ident)) => {
                res.0.push(ident_to_setting(ident)?);
            }
            None => return Ok(res),
            other => {
                let span = other.map_or(Span::call_site(), |tt| tt.span());
                return Err(Error::new(span, "expected identifier".to_string()));
            }
        }

        match input.next() {
            Some(TokenTree::Punct(ref punct)) if punct.as_char() == ',' => {}
            None => return Ok(res),
            other => {
                let span = other.map_or(Span::call_site(), |tt| tt.span());
                return Err(Error::new(span, "expected `,`".to_string()));
            }
        }
    }
}

pub(cratestruct Settings(Vec<Setting>);

impl Settings {
    pub(cratefn is_set(&self, setting: Setting) -> bool {
        self.0.iter().any(|s| *s == setting)
    }

    pub(cratefn set(&mut self, setting: Setting) {
        self.0.push(setting);
    }
}

Messung V0.5 in Prozent
C=78 H=95 G=86

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.