about summary refs log tree commit diff
path: root/src/librustc_resolve/build_reduced_graph.rs
AgeCommit message (Expand)AuthorLines
2020-08-30mv compiler to compiler/mark-1440/+0
2020-08-17rust_ast::ast => rustc_astUjjwal Sharma-2/+2
2020-08-15replaced log with tracingGurpreet Singh-1/+1
2020-08-08Eliminate the `SessionGlobals` from `librustc_ast`.Nicholas Nethercote-13/+14
2020-07-26Hygiene serialization implementationAaron Hill-4/+4
2020-07-16unwrap() -> expect()Joshua Nelson-6/+11
2020-07-14Suggest struct pat on incorrect unit or tuple patEsteban Küber-3/+3
2020-07-01Remove `token::FlattenGroup`Vadim Petrochenkov-1/+1
2020-06-27Rename two `Resolver` traitsVadim Petrochenkov-1/+1
2020-06-26proc_macro: Stop flattening groups with dummy spansVadim Petrochenkov-1/+1
2020-06-21Move remaining `NodeId` APIs from `Definitions` to `Resolver`marmeladema-39/+28
2020-06-18Rollup merge of #73320 - estebank:type-param-sugg-more, r=davidtwcoManish Goregaokar-0/+1
2020-06-17review commentsEsteban Küber-1/+1
2020-06-13Make new type param suggestion more targettedEsteban Küber-0/+1
2020-06-11Remove associated opaque typesMatthew Jasper-2/+1
2020-06-11Stop special casing top level TAITMatthew Jasper-6/+5
2020-06-06Add comments to `Resolve::get_module`Joshua Nelson-0/+6
2020-05-29Remove remaining calls to `as_local_node_id`marmeladema-7/+13
2020-05-27Store `LocalDefId` directly in `rustc_resolve::Resolver` where possiblemarmeladema-6/+7
2020-05-22Remove `macro_defs` mapAaron Hill-2/+2
2020-05-19Add error recovery for `use foo::self`mibac138-1/+9
2020-05-19Suggest fixes for `use foo::self`mibac138-2/+17
2020-05-08Remove ast::{Ident, Name} reexports.Camille GILLOT-4/+3
2020-04-24Remove `Option` from the return type of `def_kind`.Eduard-Mihai Burtescu-1/+2
2020-04-24add a few more DefKindsmark-1/+14
2020-04-19Dogfood more or_patterns in the compilerJosh Stone-23/+24
2020-04-14Rename AssocKind::Method to AssocKind::FnRustin-Liu-1/+1
2020-04-08librustc_resolve: fixup nit in previous commitmarmeladema-3/+3
2020-04-08librustc_hir: return LocalDefId instead of DefId in local_def_idmarmeladema-26/+41
2020-03-30rustc -> rustc_middle part 3 (rustfmt)Mazdak Farrokhzad-4/+4
2020-03-30rustc -> rustc_middle part 2Mazdak Farrokhzad-4/+4
2020-03-24Rollup merge of #70077 - Aaron1011:feature/new-def-path-ident, r=petrochenkovMazdak Farrokhzad-1/+4
2020-03-23resolve: Do not resolve visibilities on proc macro definitions twiceVadim Petrochenkov-1/+8
2020-03-22Store idents for `DefPathData` into crate metadataAaron Hill-1/+4
2020-03-21make some let-if-bindings more idiomatic (clippy::useless_let_if_seq)Matthias Krüger-5/+7
2020-03-16hygiene: `modern` -> `normalize_to_macros_2_0`Vadim Petrochenkov-6/+9
2020-03-16Other `legacy` -> `macro_rules`Vadim Petrochenkov-5/+5
2020-03-16resolve: `Legacy(Scope,Binding)` -> `MacroRules(Scope,Binding)`Vadim Petrochenkov-17/+17
2020-03-16ast/hir: `MacroDef::legacy` -> `MacroDef::macro_rules`Vadim Petrochenkov-3/+3
2020-03-15Rollup merge of #69589 - petrochenkov:maccall, r=CentrilMazdak Farrokhzad-12/+12
2020-03-12ast: `Mac`/`Macro` -> `MacCall`Vadim Petrochenkov-12/+12
2020-03-12Rollup merge of #69674 - mark-i-m:assoc-fn, r=matthewjasperMazdak Farrokhzad-3/+3
2020-03-07resolve: `directive` -> `import`Vadim Petrochenkov-30/+21
2020-03-07resolve: `ImportDirective` -> `Import`Vadim Petrochenkov-21/+17
2020-03-03DefKind::Method -> DefKind::AssocFnMark Mansi-3/+3
2020-03-01ast: Unmerge structures for associated items and foreign itemsVadim Petrochenkov-3/+2
2020-02-29Rename `syntax` to `rustc_ast` in source codeVadim Petrochenkov-5/+5
2020-02-27use char instead of &str for single char patternsMatthias Krüger-1/+1
2020-02-24parse/ast: move `Defaultness` into variants.Mazdak Farrokhzad-2/+2
2020-02-22parse: allow `type Foo: Ord` syntactically.Mazdak Farrokhzad-2/+2