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
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_resolve
/
build_reduced_graph.rs
Age
Commit message (
Expand
)
Author
Lines
2018-09-14
Auto merge of #54032 - oli-obk:layout_scalar_ranges, r=eddyb
bors
-2
/
+2
2018-09-13
resolve: Put different parent scopes into a single structure
Vadim Petrochenkov
-3
/
+10
2018-09-11
Split `CrateNum` into an enum instead of having magic constants
Oliver Schneider
-2
/
+2
2018-09-11
resolve: Future proof resolutions for potentially built-in attributes
Vadim Petrochenkov
-0
/
+10
2018-09-10
rustc_resolve: ignore uniform_paths canaries that resolve to an import of the...
Eduard-Mihai Burtescu
-17
/
+1
2018-09-10
rustc_resolve: inject `uniform_paths` canaries regardless of the feature-gate...
Eduard-Mihai Burtescu
-1
/
+1
2018-09-10
resolve: Split macro prelude into built-in and user-defined parts
Vadim Petrochenkov
-1
/
+1
2018-09-09
Auto merge of #53778 - petrochenkov:shadrelax2, r=nikomatsakis
bors
-11
/
+14
2018-09-08
resolve: Further simplify legacy scopes, add comments
Vadim Petrochenkov
-2
/
+3
2018-09-08
resolve: Rename some fields related to legacy macro scopes
Vadim Petrochenkov
-11
/
+13
2018-09-07
rustc_resolve: only prepend CrateRoot to a non-keyword segment.
Eduard-Mihai Burtescu
-41
/
+37
2018-09-06
rustc_resolve: allow `use crate_name;` under `uniform_paths`.
Eduard-Mihai Burtescu
-1
/
+18
2018-08-22
Replace TyForeign with ForeignTy
varkor
-2
/
+2
2018-08-22
Rename Def::{Param, Foreign} to Def::{TyParam, TyForeign}
varkor
-2
/
+2
2018-08-22
Remove Ty prefix from Ty{Foreign|Param}
varkor
-2
/
+2
2018-08-17
Stabilize `use_extern_macros`
Vadim Petrochenkov
-8
/
+1
2018-08-14
rustc_resolve: also inject canaries to detect block scopes shadowing `uniform...
Eduard-Mihai Burtescu
-26
/
+58
2018-08-14
rustc_resolve: inject ambiguity "canaries" when #![feature(uniform_paths)] is...
Eduard-Mihai Burtescu
-12
/
+107
2018-08-14
#[feature(uniform_paths)]: allow `use x::y;` to resolve through `self::x`, no...
Taylor Cramer
-7
/
+22
2018-08-14
rustc_resolve: fix special-case for one-segment import paths.
Eduard-Mihai Burtescu
-5
/
+22
2018-08-12
Prohibit using macro-expanded `macro_export` macros through module-relative p...
Vadim Petrochenkov
-1
/
+0
2018-08-06
Support custom attributes when macro modularization is enabled
Vadim Petrochenkov
-1
/
+3
2018-08-06
Discern between various kinds of non-macro attributes
Vadim Petrochenkov
-2
/
+2
2018-08-03
Move unused trait functions to inherent functions
Mark Rousskov
-1
/
+1
2018-08-03
Store concrete crate stores where possible
Mark Rousskov
-5
/
+6
2018-08-01
resolve: Implement prelude search for macro paths
Vadim Petrochenkov
-1
/
+2
2018-07-29
resolve: Modularize crate-local `#[macro_export] macro_rules`
Vadim Petrochenkov
-1
/
+15
2018-07-20
resolve: Rename `global_macros` to `macro_prelude`
Vadim Petrochenkov
-1
/
+1
2018-07-20
resolve: Remove unused parameter from `resolve_ident_in_module`
Vadim Petrochenkov
-2
/
+1
2018-07-18
Implement existential types
Oliver Schneider
-0
/
+5
2018-07-14
Functions introducing procedural macros reserve a slot in the macro namespace...
Vadim Petrochenkov
-1
/
+19
2018-06-30
resolve: Cleanup `resolve_crate_root`
Vadim Petrochenkov
-1
/
+1
2018-06-14
create multiple HIR items for a use statement
QuietMisdreavus
-1
/
+1
2018-05-18
track the root `UseTree` in addition to the leaf
Niko Matsakis
-4
/
+24
2018-05-17
Pass crate editions to macro expansions, update tests
Vadim Petrochenkov
-1
/
+2
2018-05-03
Auto merge of #50030 - flip1995:rfc2103, r=petrochenkov
bors
-1
/
+1
2018-05-02
Auto merge of #50355 - petrochenkov:50187, r=oli-obk
bors
-2
/
+6
2018-05-02
make it compile again
flip1995
-1
/
+1
2018-05-01
Remove `macro_reexport`
Vadim Petrochenkov
-28
/
+1
2018-05-01
resolve (cleanup): Get rid of `Option` in `PerNS`
Vadim Petrochenkov
-2
/
+6
2018-04-27
Rename InternedString to LocalInternedString and introduce a new thread-safe ...
John Kåre Alsaker
-3
/
+2
2018-04-11
Extend `ExternCrate` to cover externs inferred from `use` or paths
Shotaro Yamada
-5
/
+3
2018-04-06
Use `Ident` instead of `Name` in `MetaItem`
Vadim Petrochenkov
-2
/
+2
2018-04-06
Remove more duplicated spans
Vadim Petrochenkov
-1
/
+1
2018-04-06
Rename `ast::Variant_::name` into `ident` + Fix rebase
Vadim Petrochenkov
-1
/
+1
2018-04-06
Get rid of `SpannedIdent`
Vadim Petrochenkov
-8
/
+7
2018-04-06
Rename `PathSegment::identifier` to `ident`
Vadim Petrochenkov
-6
/
+2
2018-04-06
Use `Span` instead of `SyntaxContext` in `Ident`
Vadim Petrochenkov
-1
/
+1
2018-04-03
expand macro invocations in `extern {}` blocks
Austin Bonander
-0
/
+6
2018-03-17
AST: Keep distinction between `path` and `::path` in imports and visibilities
Vadim Petrochenkov
-2
/
+2
[next]