syntax: remove the handling of @str and @[] from the parser completely.

This commit is contained in:
Huon Wilson
2014-02-02 00:08:39 +11:00
parent aadcf29766
commit e39cd20a43
10 changed files with 12 additions and 50 deletions

View File

@@ -417,7 +417,6 @@ pub enum Vstore {
#[deriving(Clone, Eq, Encodable, Decodable, IterBytes)]
pub enum ExprVstore {
ExprVstoreUniq, // ~[1,2,3,4]
ExprVstoreBox, // @[1,2,3,4]
ExprVstoreSlice, // &[1,2,3,4]
ExprVstoreMutSlice, // &mut [1,2,3,4]
}