syntax: Remove io_error usage

This commit is contained in:
Alex Crichton
2014-01-29 17:39:21 -08:00
parent ef00c6a278
commit b211b00d21
7 changed files with 1340 additions and 1037 deletions

View File

@@ -33,6 +33,11 @@ This API is completely unstable and subject to change.
extern mod extra;
extern mod term;
#[cfg(stage0)]
macro_rules! if_ok (
($e:expr) => (match $e { Ok(e) => e, Err(e) => return Err(e) })
)
pub mod util {
pub mod interner;
#[cfg(test)]