summary refs log tree commit diff
path: root/src/librustc_resolve
AgeCommit message (Expand)AuthorLines
2019-09-13Support "soft" feature-gating using a lintVadim Petrochenkov-2/+2
2019-09-02expand: Keep the correct current expansion ID for eager expansionsVadim Petrochenkov-7/+9
2019-08-12Rollup merge of #63449 - petrochenkov:builtinagain, r=eddybMazdak Farrokhzad-12/+0
2019-08-12Rollup merge of #63406 - jakubadamw:resolve-inconsistent-names-suggest-qualif...Mazdak Farrokhzad-53/+55
2019-08-10Apply suggestions from code reviewJakub Adam Wieczorek-32/+32
2019-08-10Suggest using a qualified path in patterns with inconsistent bindingsJakub Adam Wieczorek-44/+46
2019-08-10diagnostics: Describe crate root modules in `DefKind::Mod` as "crate"Vadim Petrochenkov-27/+14
2019-08-10resolve: Remove remaining special cases from built-in macrosVadim Petrochenkov-12/+0
2019-08-10resolve: Address FIXME from the previous commitVadim Petrochenkov-15/+13
2019-08-10Fix calls to resolver from rustdoc and HIR loweringVadim Petrochenkov-36/+35
2019-08-10resolve: Move some more code aroundVadim Petrochenkov-616/+602
2019-08-10resolve: Turn `resolve_error` into a method on `Resolver`Vadim Petrochenkov-422/+411
2019-08-10resolve: Remove `Deref<Target=Resolver>` implementationsVadim Petrochenkov-319/+269
2019-08-10resolve: Track whole parent scope in the visitorsVadim Petrochenkov-96/+78
2019-08-10resolve: Move late resolution visitor into a separate fileVadim Petrochenkov-2634/+2663
2019-08-10resolve: Move late resolution into a separate visitorVadim Petrochenkov-280/+396
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-5/+49
2019-08-04Rename `ItemImplKind::Type` to `ItemImplKind::TyAlias`varkor-1/+1
2019-08-04Rename `ItemKind::Ty` to `ItemKind::TyAlias`varkor-2/+2
2019-08-03Move special treatment of `derive(Copy, PartialEq, Eq)` from expansion infras...Vadim Petrochenkov-5/+49
2019-08-02Replace "existential" by "opaque"varkor-6/+6
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-3/+0
2019-07-28Resolve const parameters with modern hygieneMatthew Jasper-8/+18
2019-07-27Move standard library injection into libsyntax_extVadim Petrochenkov-3/+4
2019-07-26Introduce built-in macros through libcoreVadim Petrochenkov-93/+81
2019-07-23normalize use of backticks for compiler messages in remaining modulesSamy Kacimi-1/+1
2019-07-19hygiene: Tweak naming some moreVadim Petrochenkov-7/+7
2019-07-19Adjust other names after the `Mark` renamingVadim Petrochenkov-22/+22
2019-07-19libsyntax: Remove `Mark` into `ExpnId`Vadim Petrochenkov-58/+59
2019-07-18resolve: Support resolving macro paths without macro kind restrictionsVadim Petrochenkov-13/+15
2019-07-18resolve: Attempt to resolve unresolved paths in macro namespaceVadim Petrochenkov-17/+19
2019-07-18resolve: Move some common code into the scope visitorVadim Petrochenkov-142/+114
2019-07-18resolve: Visit all scopes to collect suggestion candidates for unresolved macrosVadim Petrochenkov-122/+230
2019-07-18resolve: Use `feature(custom_attribute)` fallback only if the feature is enabledVadim Petrochenkov-73/+3
2019-07-18resolve: Decouple scope visiting process from visitor actionsVadim Petrochenkov-138/+170
2019-07-18resolve: Rename `WhereToResolve` into `Scope`Vadim Petrochenkov-71/+79
2019-07-18resolve: Move some diagnostic code into `diagnostics.rs`Vadim Petrochenkov-595/+600
2019-07-13Suggest assoc type on type not found in trait method definitionEsteban Küber-35/+70
2019-07-13Make `register_[long_]diagnostics` hygienicMatthew Jasper-1/+1
2019-07-11expand: Move "derive containers" into a separate `InvocationKind` variantVadim Petrochenkov-4/+4
2019-07-11hygiene: Introduce a helper method for creating new expansionsVadim Petrochenkov-2/+5