| Age | Commit message (Expand) | Author | Lines |
| 2018-07-10 | Deny bare trait objects in in src/libsyntax | ljedrz | -9/+9 |
| 2018-06-27 | Remove the now redundant CodeMap::new_filemap_with_lines() method. | Michael Woerister | -3/+5 |
| 2018-03-02 | Replace Rc with Lrc for shared data | John Kåre Alsaker | -2/+2 |
| 2018-01-26 | Do not capture stderr in the compiler. Instead just panic silently for fatal ... | John Kåre Alsaker | -2/+3 |
| 2017-12-24 | Make column macro output 1 based and document it | est31 | -1/+1 |
| 2017-12-19 | Implement non-mod.rs mod statements | Taylor Cramer | -1/+1 |
| 2017-12-14 | Use PathBuf instead of String where applicable | Oliver Schneider | -13/+15 |
| 2017-10-03 | Rename FileMap::path and change to an Option | Philip Craig | -1/+1 |
| 2017-09-30 | Don't use remapped path when loading modules and include files | Philip Craig | -1/+1 |
| 2017-08-30 | Make fields of `Span` private | Vadim Petrochenkov | -3/+3 |
| 2017-08-13 | Rollup merge of #43782 - nrc:include, r=GuillaumeGomez | Guillaume Gomez | -5/+6 |
| 2017-08-10 | Some tidying up around include! | Nick Cameron | -5/+6 |
| 2017-08-10 | Add a feature gate | est31 | -0/+10 |
| 2017-05-19 | Rollup merge of #42006 - jseyfried:fix_include_regression, r=nrc | Mark Simulacrum | -3/+3 |
| 2017-05-15 | Fix regression on `include!(line!())`. | Jeffrey Seyfried | -3/+3 |
| 2017-05-12 | Fix some clippy warnings in libsyntax | Andre Bogus | -2/+2 |
| 2017-04-26 | Implement a file-path remapping feature in support of debuginfo and reproduci... | Michael Woerister | -2/+2 |
| 2017-03-29 | Merge `ExpnId` and `SyntaxContext`. | Jeffrey Seyfried | -1/+1 |
| 2016-11-22 | Clean up directory ownership semantics. | Jeffrey Seyfried | -2/+3 |
| 2016-11-21 | Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p... | Jeffrey Seyfried | -7/+5 |
| 2016-11-20 | Move `syntax::util::interner` -> `syntax::symbol`, cleanup. | Jeffrey Seyfried | -7/+5 |
| 2016-11-11 | Change implementation of syntax::util::SmallVector to use data_structures::Sm... | Mark-Simulacrum | -1/+1 |
| 2016-10-29 | Move `CrateConfig` from `Crate` to `ParseSess`. | Jeffrey Seyfried | -9/+2 |
| 2016-10-14 | Avoid many CrateConfig clones. | Nicholas Nethercote | -1/+1 |
| 2016-09-13 | Move macro resolution into `librustc_resolve`. | Jeffrey Seyfried | -2/+2 |
| 2016-09-05 | Refactor `SyntaxEnv`. | Jeffrey Seyfried | -5/+3 |
| 2016-06-27 | Auto merge of #34424 - jseyfried:breaking_batch, r=Manishearth | bors | -11/+11 |
| 2016-06-26 | Rollup merge of #34385 - cgswords:tstream, r=nrc | Jeffrey Seyfried | -8/+9 |
| 2016-06-24 | Revert a change to the relative path for macro-expanded `include!`s | Jeffrey Seyfried | -1/+2 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -3/+2 |
| 2016-06-21 | Refactored tokentrees into their own files in preparation for tokenstreams. M... | cgswords | -8/+9 |
| 2016-06-16 | Add an abs_path member to FileMap, use it when writing debug info. | Ted Mielczarek | -2/+2 |
| 2016-02-11 | [breaking-change] don't pub export ast::Lit_ variants | Oliver Schneider | -1/+1 |
| 2015-12-30 | use structured errors | Nick Cameron | -5/+3 |
| 2015-11-10 | Rename _nopanic methods to remove the suffix. | Eli Friedman | -2/+2 |
| 2015-10-27 | Don't use panicking helpers in Parser. | Eli Friedman | -2/+2 |
| 2015-09-03 | Use consistent terminology for byte string literals | Vadim Petrochenkov | -1/+1 |
| 2015-07-28 | remove `get_ident` and `get_name`, make `as_str` sound | Oliver Schneider | -1/+1 |
| 2015-07-21 | Provide a filemap ctor with line info | Nick Cameron | -2/+2 |
| 2015-07-10 | Change some instances of .connect() to .join() | Wesley Wiser | -1/+1 |
| 2015-06-16 | Fix file!(), line!() and column!() macros | Simonas Kazlauskas | -3/+3 |
| 2015-04-21 | syntax: remove #![feature(box_syntax, box_patterns)] | Erick Tryzelaar | -1/+1 |
| 2015-04-14 | include_bytes! now registers the file included | Theo Belaire | -0/+5 |
| 2015-04-05 | Work towards a non-panicing parser (libsyntax) | Phil Dawes | -2/+2 |
| 2015-03-23 | Add generic conversion traits | Aaron Turon | -1/+1 |
| 2015-03-13 | syntax: use lookahead to distinguish inner and outer attributes, instead of p... | Eduard Burtescu | -1/+1 |
| 2015-03-12 | Stabilize std::path | Aaron Turon | -5/+1 |
| 2015-03-04 | std: Deprecate std::old_io::fs | Alex Crichton | -13/+20 |
| 2015-02-27 | Replace MacExpr / MacPat / MacItems with MacEager | Keegan McAllister | -7/+7 |
| 2015-02-23 | Auto merge of #21769 - brooksbp:column-line-macro, r=nick29581 | bors | -2/+3 |