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
/
librustdoc
/
clean
Age
Commit message (
Expand
)
Author
Lines
2017-01-30
Merge ty::TyBox into ty::TyAdt
Vadim Petrochenkov
-31
/
+0
2017-01-28
rustc: remove unused `bounds` field from `RegionParameterDef`.
Eduard-Mihai Burtescu
-7
/
+2
2017-01-28
rustc: always keep an explicit lifetime in trait objects.
Eduard-Mihai Burtescu
-14
/
+14
2017-01-28
rustc: clean up the style of middle::resolve_lifetime.
Eduard-Mihai Burtescu
-4
/
+4
2017-01-28
rustc: always include elidable lifetimes in HIR types.
Eduard-Mihai Burtescu
-5
/
+17
2017-01-27
Auto merge of #39158 - petrochenkov:bounds, r=nikomatsakis
bors
-2
/
+5
2017-01-26
rustc: rename TyCtxt's `map` field to `hir`.
Eduard-Mihai Burtescu
-37
/
+37
2017-01-24
Refactor parsing of generic arguments/parameters and where clauses
Vadim Petrochenkov
-2
/
+5
2017-01-17
Rename ObjectSum into TraitObject in AST/HIR
Vadim Petrochenkov
-1
/
+1
2017-01-17
AST/HIR: Merge ObjectSum and PolyTraitRef
Vadim Petrochenkov
-15
/
+14
2017-01-15
rustdoc: Give primitive types stability attributes
Oliver Middleton
-2
/
+2
2017-01-06
rustc: keep track of tables everywhere as if they were per-body.
Eduard-Mihai Burtescu
-16
/
+4
2017-01-04
Auto merge of #38414 - estebank:doc-dissambiguate, r=steveklabnik
bors
-2
/
+2
2016-12-30
Make rustdoc aware of the primitive i128 type
est31
-0
/
+4
2016-12-30
Compilation fixes
est31
-1
/
+1
2016-12-30
Add a way to retrieve constant value in 128 bits
Simonas Kazlauskas
-1
/
+3
2016-12-30
Such large. Very 128. Much bits.
Simonas Kazlauskas
-40
/
+46
2016-12-28
rustdoc: pretty-print nested bodies in inlined constants.
Eduard-Mihai Burtescu
-4
/
+27
2016-12-28
rustc: always print nested nodes where a HIR map is available.
Eduard-Mihai Burtescu
-7
/
+5
2016-12-28
rustc: simplify constant cross-crate loading and rustc_passes::consts.
Eduard-Mihai Burtescu
-12
/
+4
2016-12-28
rustc: move function arguments into hir::Body.
Eduard-Mihai Burtescu
-61
/
+60
2016-12-28
rustc: separate bodies for static/(associated)const and embedded constants.
Eduard-Mihai Burtescu
-7
/
+12
2016-12-28
rustc: separate TraitItem from their parent Item, just like ImplItem.
Eduard-Mihai Burtescu
-4
/
+4
2016-12-28
hir: lower `ImplicitSelf` to resolved `Self` TyQPath's.
Eduard-Mihai Burtescu
-11
/
+21
2016-12-21
fix String to &str cast
Esteban Küber
-1
/
+1
2016-12-22
Refactor how global paths are represented (for both ast and hir).
Jeffrey Seyfried
-17
/
+10
2016-12-21
use &str instead of String
bluss
-2
/
+2
2016-12-19
Don't try get local DefId of imported macro in rustdoc.
Michael Woerister
-1
/
+1
2016-12-05
Refactor ty::FnSig to privatize all fields
Mark-Simulacrum
-3
/
+3
2016-12-02
Auto merge of #38053 - eddyb:lazy-9, r=nikomatsakis
bors
-10
/
+8
2016-11-30
Auto merge of #37954 - eddyb:rustdoc-2, r=alexcrichton
bors
-98
/
+87
2016-11-30
rustdoc: link to cross-crate sources directly.
Eduard-Mihai Burtescu
-98
/
+87
2016-11-29
rustc: simplify AdtDef by removing the field types and ty::ivar.
Eduard-Mihai Burtescu
-5
/
+5
2016-11-29
rustc: remove type information from TraitDef.
Eduard-Mihai Burtescu
-5
/
+3
2016-11-28
Adds TyCtxt::require_lang_item(LangItem) to simplify lang item requires.
Mark-Simulacrum
-2
/
+1
2016-11-28
Refactor TyTrait to contain a interned ExistentialPredicate slice.
Mark-Simulacrum
-17
/
+10
2016-11-28
Remove BuiltinBound and BuiltinBounds.
Mark-Simulacrum
-39
/
+18
2016-11-28
Refactor BuiltinBounds to Vec<DefId> on TraitObject.
Mark-Simulacrum
-2
/
+22
2016-11-28
Privatize TraitObject.principal and add a method accessor, returning Option.
Mark-Simulacrum
-22
/
+26
2016-11-28
rustc_typeck: save the type cache for rustdoc and save-analysis.
Eduard Burtescu
-4
/
+7
2016-11-28
rustc: embed path resolutions into the HIR instead of keeping DefMap.
Eduard-Mihai Burtescu
-30
/
+34
2016-11-28
rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.
Eduard-Mihai Burtescu
-60
/
+12
2016-11-28
rustc: desugar UFCS as much as possible during HIR lowering.
Eduard Burtescu
-11
/
+30
2016-11-24
rustdoc: we can now assume DocContext always has a TyCtxt.
Eduard-Mihai Burtescu
-273
/
+201
2016-11-24
rustdoc: use libsyntax ast::Attribute instead of "cleaning" them.
Eduard-Mihai Burtescu
-75
/
+92
2016-11-21
Fix fallout in `rustdoc` and tests.
Jeffrey Seyfried
-3
/
+3
2016-11-17
hash the contents of impl-item-ref by adding them to visitor
Niko Matsakis
-4
/
+5
2016-11-13
do not use deprecated text for unstable docs
Andy Russell
-7
/
+9
2016-11-10
rustc: clean up lookup_item_type and remove TypeScheme.
Eduard Burtescu
-36
/
+30
2016-11-10
rustc: unify and simplify managing associated items.
Eduard Burtescu
-147
/
+128
[next]