mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* chore: rename flowy-folder2 to flowy-folder * chore: rename flowy-document2 to flowy-document * chore: fix test * chore: move lib-infra crate * chore: remove shared-lib * chore: fix clippy
45 lines
969 B
Rust
45 lines
969 B
Rust
use quote::ToTokens;
|
|
use std::{cell::RefCell, fmt::Display, thread};
|
|
|
|
#[derive(Default)]
|
|
pub struct ASTResult {
|
|
errors: RefCell<Option<Vec<syn::Error>>>,
|
|
}
|
|
|
|
impl ASTResult {
|
|
pub fn new() -> Self {
|
|
ASTResult {
|
|
errors: RefCell::new(Some(Vec::new())),
|
|
}
|
|
}
|
|
|
|
pub fn error_spanned_by<A: ToTokens, T: Display>(&self, obj: A, msg: T) {
|
|
self
|
|
.errors
|
|
.borrow_mut()
|
|
.as_mut()
|
|
.unwrap()
|
|
.push(syn::Error::new_spanned(obj.into_token_stream(), msg));
|
|
}
|
|
|
|
pub fn syn_error(&self, err: syn::Error) {
|
|
self.errors.borrow_mut().as_mut().unwrap().push(err);
|
|
}
|
|
|
|
pub fn check(self) -> Result<(), Vec<syn::Error>> {
|
|
let errors = self.errors.borrow_mut().take().unwrap();
|
|
match errors.len() {
|
|
0 => Ok(()),
|
|
_ => Err(errors),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Drop for ASTResult {
|
|
fn drop(&mut self) {
|
|
if !thread::panicking() && self.errors.borrow().is_some() {
|
|
panic!("forgot to check for errors");
|
|
}
|
|
}
|
|
}
|