dioxus_rsx/
diagnostics.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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());
        }
    }
}