Do not capture stderr in the compiler. Instead just panic silently for fatal errors
This commit is contained in:
parent
9fd7da904b
commit
9a8d6b8bb5
19 changed files with 90 additions and 97 deletions
|
@ -54,7 +54,7 @@ macro_rules! panictry {
|
|||
Ok(e) => e,
|
||||
Err(mut e) => {
|
||||
e.emit();
|
||||
panic!(FatalError);
|
||||
FatalError.raise()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue