about summary refs log tree commit diff
path: root/src/librustc_resolve/lib.rs
AgeCommit message (Expand)AuthorLines
2019-09-05Replace diagnostic plugins with macro_rulesMark Rousskov-5/+1
2019-09-05Allow ast passes to create hygienic spansMatthew Jasper-0/+22
2019-09-05resolve: extract `try_resolve_as_non_binding`.Mazdak Farrokhzad-0/+1
2019-08-23resolve: Do not rely on default transparency when detecting proc macro derivesVadim Petrochenkov-4/+8
2019-08-17resolve/expand: Rename some things for clarityVadim Petrochenkov-2/+2
2019-08-17Move type parameter shadowing errors to resolveMatthew Jasper-1/+1
2019-08-16Fix rebaseVadim Petrochenkov-7/+1
2019-08-16resolve: Move some code aroundVadim Petrochenkov-0/+20
2019-08-16resolve: Populate external modules in more automatic and lazy wayVadim Petrochenkov-15/+23
2019-08-15resolve: `ParentScope::default` -> `ParentScope::module`Vadim Petrochenkov-4/+6
2019-08-15resolve: Add some comments to the main modulesVadim Petrochenkov-0/+9
2019-08-15resolve: Privatize `BuildReducedGraphVisitor`Vadim Petrochenkov-3/+2
2019-08-15resolve: Make `ParentScope` `Copy`Vadim Petrochenkov-5/+9
2019-08-15resolve: Eliminate `InvocationData`Vadim Petrochenkov-15/+14
2019-08-15resolve: Add `ParentScope::default`, eliminate `dummy_parent_scope`Vadim Petrochenkov-4/+15
2019-08-15resolve: Do not "normalize away" trait/enum modules prematurelyVadim Petrochenkov-3/+5
2019-08-15resolve: Move macro resolution traces from `Module`s to `Resolver`Vadim Petrochenkov-8/+10
2019-08-15`Ident::with_empty_ctxt` -> `Ident::with_dummy_span`Vadim Petrochenkov-7/+7
2019-08-15syntax_pos: `NO_EXPANSION`/`SyntaxContext::empty()` -> `SyntaxContext::root()`Vadim Petrochenkov-1/+1
2019-08-15syntax_pos: Introduce a helper for checking whether a span comes from expansionVadim Petrochenkov-2/+2
2019-08-12Rollup merge of #63449 - petrochenkov:builtinagain, r=eddybMazdak Farrokhzad-3/+0
2019-08-12Rollup merge of #63406 - jakubadamw:resolve-inconsistent-names-suggest-qualif...Mazdak Farrokhzad-0/+1
2019-08-10Apply suggestions from code reviewJakub Adam Wieczorek-1/+1
2019-08-10Suggest using a qualified path in patterns with inconsistent bindingsJakub Adam Wieczorek-0/+1
2019-08-10diagnostics: Describe crate root modules in `DefKind::Mod` as "crate"Vadim Petrochenkov-22/+9
2019-08-10resolve: Remove remaining special cases from built-in macrosVadim Petrochenkov-3/+0
2019-08-10resolve: Address FIXME from the previous commitVadim Petrochenkov-9/+8
2019-08-10Fix calls to resolver from rustdoc and HIR loweringVadim Petrochenkov-35/+34
2019-08-10resolve: Move some more code aroundVadim Petrochenkov-331/+4
2019-08-10resolve: Turn `resolve_error` into a method on `Resolver`Vadim Petrochenkov-298/+15
2019-08-10resolve: Remove `Deref<Target=Resolver>` implementationsVadim Petrochenkov-1/+1
2019-08-10resolve: Move late resolution visitor into a separate fileVadim Petrochenkov-1960/+74
2019-08-10resolve: Move late resolution into a separate visitorVadim Petrochenkov-169/+248
2019-08-09Mention that tuple structs are private if their fields areEsteban Küber-3/+28
2019-08-09Rollup merge of #63289 - kornelski:missingcrate, r=zackmdavisMazdak Farrokhzad-1/+1
2019-08-06Rollup merge of #63286 - Mark-Simulacrum:resolve-no-cb, r=petrochenkovMazdak Farrokhzad-24/+17
2019-08-05Don't recommend `extern crate` syntaxKornel-1/+1
2019-08-05Force callers of resolve_ast_path to deal with Res::Err correctlyMark Rousskov-10/+2
2019-08-05Don't store &SpanMark Rousskov-4/+4
2019-08-05Replace error callback with ResultMark Rousskov-23/+24
2019-08-05Auto merge of #63248 - petrochenkov:nomarker, r=matthewjasperbors-2/+18
2019-08-04Rename `ItemImplKind::Type` to `ItemImplKind::TyAlias`varkor-1/+1
2019-08-04Rename `ItemKind::Ty` to `ItemKind::TyAlias`varkor-1/+1
2019-08-03Move special treatment of `derive(Copy, PartialEq, Eq)` from expansion infras...Vadim Petrochenkov-2/+18
2019-08-02Replace "existential" by "opaque"varkor-3/+3
2019-07-30Rollup merge of #63083 - matthewjasper:parameter-hygiene, r=petrochenkovMazdak Farrokhzad-8/+18
2019-07-28Deny `unused_lifetimes` through rustbuildVadim Petrochenkov-2/+0
2019-07-28Remove lint annotations in specific crates that are already enforced by rustb...Vadim Petrochenkov-1/+0
2019-07-28Resolve const parameters with modern hygieneMatthew Jasper-8/+18
2019-07-26Introduce built-in macros through libcoreVadim Petrochenkov-11/+13