dioxus-rsx 0.6.0-alpha.0

Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences
Documentation
use proc_macro2_diagnostics::Diagnostic;
use quote::ToTokens;

/// A collection of diagnostics
///
/// This is a wrapper type since we want it to be transparent in terms of PartialEq and Eq.
/// This also lets us choose the expansion strategy for the diagnostics.
#[derive(Debug, Clone, Default)]
pub struct Diagnostics {
    pub diagnostics: Vec<Diagnostic>,
}

impl Diagnostics {
    pub fn new() -> Self {
        Self {
            diagnostics: vec![],
        }
    }

    pub fn push(&mut self, diagnostic: Diagnostic) {
        self.diagnostics.push(diagnostic);
    }

    pub fn extend(&mut self, diagnostics: Vec<Diagnostic>) {
        self.diagnostics.extend(diagnostics);
    }

    pub fn is_empty(&self) -> bool {
        self.diagnostics.is_empty()
    }

    pub fn into_diagnostics(self) -> Vec<Diagnostic> {
        self.diagnostics
    }

    pub fn len(&self) -> usize {
        self.diagnostics.len()
    }
}

impl PartialEq for Diagnostics {
    fn eq(&self, _other: &Self) -> bool {
        true
    }
}

impl Eq for Diagnostics {}

impl ToTokens for Diagnostics {
    fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) {
        for diagnostic in &self.diagnostics {
            tokens.extend(diagnostic.clone().emit_as_expr_tokens());
        }
    }
}