1
Fork 0

nix syntax::errors & prefer rustc_errors over errors

This commit is contained in:
Mazdak Farrokhzad 2020-01-09 11:18:47 +01:00
parent 2d8d559bbe
commit 8bd3d240e3
138 changed files with 242 additions and 276 deletions

View file

@ -13,7 +13,7 @@ extern crate proc_macro as pm;
#[macro_export]
macro_rules! panictry {
($e:expr) => {{
use errors::FatalError;
use rustc_errors::FatalError;
use std::result::Result::{Err, Ok};
match $e {
Ok(e) => e,