syntax: ast: remove TyBox and UnBox.

This commit is contained in:
Eduard Burtescu 2014-10-01 00:59:56 +03:00
parent a99e626d07
commit d1a57e479c
18 changed files with 10 additions and 63 deletions

View file

@ -416,7 +416,6 @@ pub enum BinOp {
#[deriving(Clone, PartialEq, Eq, Encodable, Decodable, Hash, Show)]
pub enum UnOp {
UnBox,
UnUniq,
UnDeref,
UnNot,
@ -953,7 +952,6 @@ pub struct UnboxedFnTy {
pub enum Ty_ {
TyNil,
TyBot, /* bottom type */
TyBox(P<Ty>),
TyUniq(P<Ty>),
TyVec(P<Ty>),
TyFixedLengthVec(P<Ty>, P<Expr>),