| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-12-25 | Remove licenses | Mark Rousskov | -11/+0 | |
| 2015-04-08 | Remove pretty-expanded from failing tests | Alex Crichton | -1/+0 | |
| This commit removes pretty-expanded from all tests that wind up calling panic! one way or another now that its internals are unstable. | ||||
| 2015-03-23 | rustdoc: Replace no-pretty-expanded with pretty-expanded | Brian Anderson | -0/+2 | |
| Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work. | ||||
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -2/+2 | |
| 2015-02-18 | Update suffixes en masse in tests using `perl -p -i -e` | Niko Matsakis | -2/+2 | |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -2/+2 | |
| 2014-11-16 | Update tests accordingly | Jakub Bukaj | -2/+2 | |
| 2014-08-31 | Allow ExprLit expression macros to be used in patterns. | Eduard Burtescu | -0/+5 | |
| 2014-06-23 | Allow trailing comma in `concat!` | Stepan Koltsov | -1/+3 | |
| (And in other extensions implemented with `get_exprs_from_tts` function). | ||||
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -2/+2 | |
| [breaking-change] | ||||
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -2/+2 | |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -2/+2 | |
| 2013-10-31 | Implement a concat!() format extension | Alex Crichton | -0/+19 | |
| This extension can be used to concatenate string literals at compile time. C has this useful ability when placing string literals lexically next to one another, but this needs to be handled at the syntax extension level to recursively expand macros. The major use case for this is something like: macro_rules! mylog( ($fmt:expr $($arg:tt)*) => { error2!(concat!(file!(), ":", line!(), " - ", $fmt) $($arg)*); }) Where the mylog macro will automatically prepend the filename/line number to the beginning of every log message. | ||||
