1
Fork 0

Do not capture stderr in the compiler. Instead just panic silently for fatal errors

This commit is contained in:
John Kåre Alsaker 2018-01-21 12:47:58 +01:00
parent 9fd7da904b
commit 9a8d6b8bb5
19 changed files with 90 additions and 97 deletions

View file

@ -54,7 +54,7 @@ macro_rules! panictry {
Ok(e) => e,
Err(mut e) => {
e.emit();
panic!(FatalError);
FatalError.raise()
}
}
})