rust/src/libsyntax/parse
Patrick Walton 090040bf40 librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except
for `~str`/`~[]`.

Note that `~self` still remains, since I forgot to add support for
`Box<self>` before the snapshot.

How to update your code:

* Instead of `~EXPR`, you should write `box EXPR`.

* Instead of `~TYPE`, you should write `Box<Type>`.

* Instead of `~PATTERN`, you should write `box PATTERN`.

[breaking-change]
2014-05-06 23:12:54 -07:00
..
attr.rs Remove comment about semicolons for inner attributes from docs and adjust comments. 2014-05-03 21:24:06 +01:00
classify.rs Fix repeated module documentation 2014-04-27 22:17:49 -04:00
comments.rs Replace all ~"" with "".to_owned() 2014-04-18 17:25:34 -07:00
common.rs Fix repeated module documentation 2014-04-27 22:17:49 -04:00
lexer.rs Replace most ~exprs with 'box'. #11779 2014-05-02 23:00:58 -07:00
mod.rs Replace most ~exprs with 'box'. #11779 2014-05-02 23:00:58 -07:00
obsolete.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
parser.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
token.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00