Move ErrorReported to rustc_errors

This commit is contained in:
Mark Rousskov 2019-11-24 16:59:56 -05:00
parent 797fd92628
commit 2299586ffc
2 changed files with 8 additions and 5 deletions

View file

@ -7,7 +7,6 @@ use std::fmt::Debug;
use std::time::{Duration, Instant};
use syntax::symbol::{Symbol, sym};
use rustc_macros::HashStable;
use crate::session::Session;
#[cfg(test)]
@ -16,10 +15,7 @@ mod tests;
// The name of the associated type for `Fn` return types.
pub const FN_OUTPUT_NAME: Symbol = sym::Output;
// Useful type to use with `Result<>` indicate that an error has already
// been reported to the user, so no need to continue checking.
#[derive(Clone, Copy, Debug, RustcEncodable, RustcDecodable, HashStable)]
pub struct ErrorReported;
pub use errors::ErrorReported;
thread_local!(static TIME_DEPTH: Cell<usize> = Cell::new(0));

View file

@ -993,3 +993,10 @@ macro_rules! pluralize {
if $x != 1 { "s" } else { "" }
};
}
// Useful type to use with `Result<>` indicate that an error has already
// been reported to the user, so no need to continue checking.
#[derive(Clone, Copy, Debug, RustcEncodable, RustcDecodable, Hash, PartialEq, Eq)]
pub struct ErrorReported;
rustc_data_structures::impl_stable_hash_via_hash!(ErrorReported);