index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_resolve
/
diagnostics.rs
Age
Commit message (
Expand
)
Author
Lines
2019-12-06
Rename to `then_some` and `then`
varkor
-3
/
+3
2019-12-06
Use `to_option` in various places
varkor
-15
/
+3
2019-11-30
builtin_attrs.rs -> rustc_feature
Mazdak Farrokhzad
-1
/
+1
2019-11-17
Rollup merge of #66344 - petrochenkov:noregattr, r=matthewjasper
Yuki Okushi
-9
/
+0
2019-11-16
rustc_plugin: Remove `Registry::register_attribute`
Vadim Petrochenkov
-9
/
+0
2019-11-16
resolve: Introduce a new scope for derive helpers
Vadim Petrochenkov
-0
/
+9
2019-11-16
resolve: `Scope::DeriveHelpers` -> `Scope::DeriveHelpersCompat`
Vadim Petrochenkov
-1
/
+1
2019-11-14
Clean some error codes diagnostics
Guillaume Gomez
-5
/
+5
2019-11-14
Update to use new librustc_error_codes library
Guillaume Gomez
-0
/
+2
2019-11-09
Support registering attributes and attribute tools using crate-level attributes
Vadim Petrochenkov
-3
/
+11
2019-10-28
Auto merge of #65421 - estebank:variants, r=petrochenkov
bors
-16
/
+28
2019-10-27
Point at local similarly named element and tweak references to variants
Esteban Küber
-16
/
+28
2019-10-27
rustc, rustc_passes: don't depend on syntax_expand.
Mazdak Farrokhzad
-1
/
+1
2019-10-22
Remove "type parameter depends on const parameter" error from resolution
varkor
-10
/
+0
2019-10-16
move syntax::ext to new crate syntax_expand
Mazdak Farrokhzad
-1
/
+1
2019-10-15
Don't use `gensym_if_underscore` to resolve `_` bindings
Matthew Jasper
-3
/
+3
2019-10-08
Rollup merge of #65133 - davidtwco:issue-65035-static-with-generic-in-foreign...
Mazdak Farrokhzad
-18
/
+20
2019-10-08
resolve: prohibit foreign statics w/ generics
David Wood
-18
/
+20
2019-10-05
Remove `for_each_child_stable`
Aaron Hill
-1
/
+1
2019-10-03
Allocate a new diagnostic for defaulted type parameters cannot use `Self`
Felix S. Klock II
-0
/
+11
2019-09-05
Simplify std lib injection
Matthew Jasper
-0
/
+8
2019-08-17
Move type parameter shadowing errors to resolve
Matthew Jasper
-6
/
+8
2019-08-16
resolve: Move some code around
Vadim Petrochenkov
-16
/
+16
2019-08-16
resolve: Populate external modules in more automatic and lazy way
Vadim Petrochenkov
-14
/
+13
2019-08-15
resolve: Privatize `BuildReducedGraphVisitor`
Vadim Petrochenkov
-1
/
+1
2019-08-15
resolve: Make `ParentScope` `Copy`
Vadim Petrochenkov
-2
/
+2
2019-08-15
`Ident::with_empty_ctxt` -> `Ident::with_dummy_span`
Vadim Petrochenkov
-1
/
+1
2019-08-12
Rollup merge of #63406 - jakubadamw:resolve-inconsistent-names-suggest-qualif...
Mazdak Farrokhzad
-5
/
+16
2019-08-10
Apply suggestions from code review
Jakub Adam Wieczorek
-6
/
+8
2019-08-10
Suggest using a qualified path in patterns with inconsistent bindings
Jakub Adam Wieczorek
-5
/
+14
2019-08-10
diagnostics: Describe crate root modules in `DefKind::Mod` as "crate"
Vadim Petrochenkov
-2
/
+3
2019-08-10
resolve: Turn `resolve_error` into a method on `Resolver`
Vadim Petrochenkov
-3
/
+282
2019-08-10
resolve: Remove `Deref<Target=Resolver>` implementations
Vadim Petrochenkov
-9
/
+9
2019-08-10
resolve: Move late resolution visitor into a separate file
Vadim Petrochenkov
-674
/
+14
2019-08-10
resolve: Move late resolution into a separate visitor
Vadim Petrochenkov
-9
/
+21
2019-07-26
Introduce built-in macros through libcore
Vadim Petrochenkov
-25
/
+12
2019-07-18
resolve: Support resolving macro paths without macro kind restrictions
Vadim Petrochenkov
-1
/
+1
2019-07-18
resolve: Attempt to resolve unresolved paths in macro namespace
Vadim Petrochenkov
-2
/
+2
2019-07-18
resolve: Move some common code into the scope visitor
Vadim Petrochenkov
-51
/
+30
2019-07-18
resolve: Visit all scopes to collect suggestion candidates for unresolved macros
Vadim Petrochenkov
-108
/
+222
2019-07-18
resolve: Use `feature(custom_attribute)` fallback only if the feature is enabled
Vadim Petrochenkov
-55
/
+0
2019-07-18
resolve: Rename `WhereToResolve` into `Scope`
Vadim Petrochenkov
-2
/
+1
2019-07-18
resolve: Move some diagnostic code into `diagnostics.rs`
Vadim Petrochenkov
-7
/
+593
2019-06-18
rustc: remove 'x: 'y bounds (except from comments/strings).
Eduard-Mihai Burtescu
-1
/
+1
2019-05-26
Rename "Associated*" to "Assoc*"
Andrew Xu
-1
/
+1
2019-05-22
Eliminate unnecessary `Ident::with_empty_ctxt`s
Vadim Petrochenkov
-1
/
+1
2019-05-22
Simplify use of keyword symbols
Vadim Petrochenkov
-7
/
+7
2019-05-04
Rename `Res::kind_name` to `Res::descr` for consistency
Vadim Petrochenkov
-1
/
+1
2019-05-03
rustc: rename hir::def::Def to Res (short for "resolution").
Eduard-Mihai Burtescu
-29
/
+29
2019-05-03
rustc: use DefKind instead of Def, where possible.
Eduard-Mihai Burtescu
-5
/
+5
[prev]
[next]