about summary refs log tree commit diff
path: root/src/libsyntax/print/pprust.rs
AgeCommit message (Expand)AuthorLines
2020-02-01syntax::print -> new crate rustc_ast_prettyMazdak Farrokhzad-2781/+0
2020-02-01pretty: remove ParseSess dependencyMazdak Farrokhzad-17/+11
2020-01-23unused-parens: implement for block return valuesTyler Lanphear-5/+1
2020-01-22Rollup merge of #68441 - Centril:pprust-as_deref, r=Mark-SimulacrumTyler Mandry-2/+2
2020-01-22pprust: use as_derefMazdak Farrokhzad-2/+2
2020-01-19Add `constness` field to `ast::ItemKind::Impl`Dylan MacKenzie-0/+9
2020-01-17Use named fields for `ast::ItemKind::Impl`Dylan MacKenzie-8/+8
2020-01-10Introduce `#![feature(half_open_range_patterns)]`.Mazdak Farrokhzad-3/+7
2020-01-02Normalize `syntax::symbol` imports.Mazdak Farrokhzad-1/+1
2020-01-02Normalize `syntax::source_map` imports.Mazdak Farrokhzad-4/+3
2020-01-01Rename `syntax_pos` to `rustc_span` in source codeVadim Petrochenkov-13/+13
2019-12-23Add span information to `ExprKind::Assign`varkor-1/+1
2019-12-22Format the worldMark Rousskov-371/+341
2019-12-201. ast::Mutability::{Mutable -> Mut, Immutable -> Not}.Mazdak Farrokhzad-7/+7
2019-12-12`AssocImplKind::{Method -> Fn}`.Mazdak Farrokhzad-1/+1
2019-12-12Unify associated item pretty printing.Mazdak Farrokhzad-75/+21
2019-12-12parse: refactor fun ret ty & param tyMazdak Farrokhzad-56/+19
2019-12-12Unify `{Trait,Impl}ItemKind::TyAlias` structures.Mazdak Farrokhzad-12/+10
2019-12-12`TraitItemKind::Type` -> `TraitItemKind::TyAlias`.Mazdak Farrokhzad-1/+1
2019-12-12Use `Option` in `ImplItemKind::Method`.Mazdak Farrokhzad-15/+11
2019-12-12Use `Option` in `ImplItemKind::Const`.Mazdak Farrokhzad-1/+1
2019-12-12Alias `TraitItem` & `ImplItem`.Mazdak Farrokhzad-0/+1
2019-12-07Print the visibility in `print_variant`.Mazdak Farrokhzad-0/+1
2019-12-06Rename to `then_some` and `then`varkor-1/+1
2019-12-06Use `to_option` in various placesvarkor-1/+1
2019-12-02syntax: Use `ast::MacArgs` for macro definitionsVadim Petrochenkov-2/+2
2019-12-02syntax: Use `ast::MacArgs` for attributesVadim Petrochenkov-10/+15
2019-12-02syntax: Remove redundant span from `ast::Mac`Vadim Petrochenkov-2/+2
2019-12-02syntax: Introduce a struct `MacArgs` for macro argumentsVadim Petrochenkov-14/+10
2019-11-24Add raw address of expressions to the AST and HIRMatthew Jasper-17/+20
2019-11-16ast: Keep string literals in ABIs preciselyVadim Petrochenkov-6/+4
2019-11-16ast: Keep `extern` qualifiers in functions more preciselyVadim Petrochenkov-7/+15
2019-11-14TAIT: remove `OpaqueTy` in AST.Mazdak Farrokhzad-20/+0
2019-11-10move syntax::parse -> librustc_parseMazdak Farrokhzad-7/+7
2019-11-10move config.rs to libsyntax_expandMazdak Farrokhzad-2/+5
2019-11-08ast::ItemKind::Fn: use ast::FnSigMazdak Farrokhzad-3/+3
2019-11-08ast::MethodSig -> ast::FnSigMazdak Farrokhzad-1/+1
2019-11-07move syntax::parse::lexer::comments -> syntax::util::commentsMazdak Farrokhzad-1/+1
2019-11-07move parse::classify -> util::classifyMazdak Farrokhzad-2/+2
2019-11-07syntax::parser::token -> syntax::tokenMazdak Farrokhzad-1/+1
2019-11-07parser: don't hardcode ABIs into grammarMazdak Farrokhzad-5/+8
2019-11-06Make doc comments cheaper with `AttrKind`.Nicholas Nethercote-9/+12
2019-11-02Convert `x.as_str().to_string()` to `x.to_string()` where possible.Nicholas Nethercote-3/+3
2019-10-15syntax::parse::sess -> syntax::sessMazdak Farrokhzad-1/+2
2019-10-14pprust: `p1@p2` -> `p1 @ p2`Mazdak Farrokhzad-1/+2
2019-09-30syntax: Support modern attribute syntax in the `meta` matcherVadim Petrochenkov-18/+22
2019-09-27Filter out stmts made for the redundant_semicolon lint when pretty-printingnathanwhit-3/+12
2019-09-26Rename `MetaItem.node` to `MetaItem.kind`varkor-1/+1
2019-09-26Rename `ForeignItem.node` to `ForeignItem.kind`varkor-1/+1
2019-09-26Rename `Item.node` to `Item.kind`varkor-1/+1