Removed ty_type (previously used to represent *tydesc).

This commit is contained in:
Eduard Burtescu 2014-02-11 13:48:55 +02:00
parent 2ca02eae1c
commit 54760b9f27
17 changed files with 29 additions and 57 deletions

View file

@ -160,6 +160,9 @@ pub trait TyVisitor {
fn visit_trait(&mut self, name: &str) -> bool;
fn visit_param(&mut self, i: uint) -> bool;
fn visit_self(&mut self) -> bool;
// NOTE Remove after next snapshot.
#[cfg(stage0)]
fn visit_type(&mut self) -> bool;
}