summary refs log tree commit diff
path: root/src/librustc_save_analysis/dump_visitor.rs
AgeCommit message (Expand)AuthorLines
2018-07-29Replace push loops with collect() and extend() where possibleljedrz-6/+5
2018-07-18Match ergonomicsOliver Schneider-1/+1
2018-07-18Implement existential typesOliver Schneider-0/+40
2018-07-14Address commentsVadim Petrochenkov-3/+3
2018-07-14Remove most of `PartialEq` impls from AST and HIR structuresVadim Petrochenkov-3/+3
2018-06-28Use `Ident`s for associated item definitions in HIRVadim Petrochenkov-4/+4
2018-06-21async await desugaring and testsTaylor Cramer-1/+1
2018-06-20Make GenericBound explicitvarkor-5/+3
2018-06-20Rename ParamBound(s) to GenericBound(s)varkor-1/+1
2018-06-20Rename TraitTyParamBound to ParamBound::Traitvarkor-2/+2
2018-06-20Lift bounds into GenericParamvarkor-4/+4
2018-06-20Rename structures in astvarkor-6/+6
2018-06-20Refactor generic parameters in rustdoc/cleanvarkor-24/+18
2018-06-20Remove AngleBracketedArgs implvarkor-5/+13
2018-06-20Refactor ast::GenericParam as a structvarkor-35/+41
2018-06-20Rename ast::GenericParam and ast::GenericArgvarkor-2/+2
2018-06-20Make method and variable names more consistentvarkor-4/+4
2018-06-20Rename "parameter" to "arg"varkor-5/+5
2018-06-20Rename PathParameter(s) to GenericArg(s)varkor-3/+3
2018-06-20Consolidate PathParameters and AngleBracketedParameterDatavarkor-2/+2
2018-05-19rustc: introduce {ast,hir}::AnonConst to consolidate so-called "embedded cons...Eduard-Mihai Burtescu-2/+2
2018-05-15save-analysis: handle aliasing imports a bit more nicelyNick Cameron-92/+8
2018-04-12Avoid comparing fields by name when possibleVadim Petrochenkov-7/+3
2018-04-12AST/HIR: Merge field access expressions for named and numeric fieldsVadim Petrochenkov-47/+0
2018-04-07Remove mention of CsvDumperTamir Duberstein-3/+2
2018-04-06Remove more duplicated spansVadim Petrochenkov-20/+20
2018-04-06Rename `ast::Variant_::name` into `ident` + Fix rebaseVadim Petrochenkov-1/+1
2018-04-03expand macro invocations in `extern {}` blocksAustin Bonander-0/+1
2018-03-17Rename `Span::empty` to `Span::shrink_to_lo`, add `Span::shrink_to_hi`Vadim Petrochenkov-1/+1
2018-03-17AST: Make renames in imports closer to the sourceVadim Petrochenkov-1/+2
2018-03-07Do not panic on tuple struct access out of boundsShotaro Yamada-7/+10
2018-03-07Fix save-analysis generation panic with invalid tuple accessShotaro Yamada-1/+4
2018-02-24Implement multiple patterns with `|` in `if let` and `while let`Vadim Petrochenkov-78/+85
2018-02-18Replace dummy spans with empty spansSeiichi Uchida-3/+4
2018-02-18Change ast::Visibility to Spanned typeSeiichi Uchida-20/+16
2018-02-10Emit data::Impl in save-analysisMartin Algesten-2/+6
2018-01-23Adds support for immovable generators. Move checking of invalid borrows acros...John Kåre Alsaker-1/+1
2018-01-13Rollup merge of #47081 - pietroalbini:fix-nested-tree-dump, r=nrckennytm-1/+7
2018-01-08rustc::ty: Rename `struct_variant` to `non_enum_variant`Robin Kruppe-1/+3
2017-12-30Fix nested imports not included in the save_analysis outputPietro Albini-1/+7
2017-12-21Add GenericParam, refactor Generics in ast, hir, rustdocJonas Platte-38/+47
2017-12-15save-analysis: dump extern crate importsAndy Russell-1/+4
2017-12-15save-analysis: document `process_use_tree`Andy Russell-0/+10
2017-12-15save-analysis: add parents to importsAndy Russell-3/+9
2017-12-14stub out trait aliases in save_analysisAlex Burka-0/+1
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-1/+1
2017-11-30Implement RFC 2128 (use_nested_groups)Pietro Albini-81/+107
2017-11-19initialize `Access` with macroAndy Russell-52/+19
2017-11-19allow filtering analysis by reachabilityAndy Russell-36/+103
2017-11-08save-analysis: run rustfmtNick Cameron-399/+521