auto merge of #8820 : alexcrichton/rust/no-io-writer, r=brson
At the same time, this updates the TyVisitor to use a mutable self because it's probably going to be mutating state as it goes along anyway.
This commit is contained in:
commit
f94844c558
11 changed files with 1715 additions and 501 deletions
|
@ -178,8 +178,14 @@ pub mod run;
|
|||
pub mod sys;
|
||||
pub mod cast;
|
||||
pub mod fmt;
|
||||
#[cfg(stage0)] #[path = "repr_stage0.rs"]
|
||||
pub mod repr;
|
||||
#[cfg(not(stage0))]
|
||||
pub mod repr;
|
||||
pub mod cleanup;
|
||||
#[cfg(stage0)] #[path = "reflect_stage0.rs"]
|
||||
pub mod reflect;
|
||||
#[cfg(not(stage0))]
|
||||
pub mod reflect;
|
||||
pub mod condition;
|
||||
pub mod logging;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue