rust/src/libregex
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
..
test regex: remove the use of ~[] & some unnecessary ~'s. 2014-04-30 00:55:20 +10:00
testdata Add a regex crate to the Rust distribution. 2014-04-25 00:27:24 -04:00
compile.rs regex: remove the use of ~[] & some unnecessary ~'s. 2014-04-30 00:55:20 +10:00
lib.rs regex: remove the use of ~[] & some unnecessary ~'s. 2014-04-30 00:55:20 +10:00
parse.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
re.rs regex: General style tweaks. 2014-04-30 10:35:20 +10:00
unicode.rs Add a regex crate to the Rust distribution. 2014-04-25 00:27:24 -04:00
vm.rs regex: General style tweaks. 2014-04-30 10:35:20 +10:00