| Age | Commit message (Expand) | Author | Lines |
| 2015-10-27 | the const evaluator might run before check_const | Oliver Schneider | -8/+16 |
| 2015-10-19 | copy paste error of stable attribute | Oliver Schneider | -1/+0 |
| 2015-10-19 | allow constant evaluation of function calls | Oliver Schneider | -17/+87 |
| 2015-10-13 | Merge VariantData and VariantData_ | Vadim Petrochenkov | -1/+1 |
| 2015-10-13 | Dict -> Struct, StructDef -> VariantData, def -> data | Vadim Petrochenkov | -1/+1 |
| 2015-10-13 | Remove now redundant NodeId from Variant | Vadim Petrochenkov | -1/+1 |
| 2015-10-04 | change PartialEq impl for ConstVal so that two constants are `==` | Niko Matsakis | -1/+23 |
| 2015-10-04 | switch to using constvals for constants, instead of having constant | Niko Matsakis | -1/+1 |
| 2015-10-03 | Auto merge of #28521 - arielb1:metadiet, r=eddyb | bors | -2/+2 |
| 2015-10-02 | Merge branch 'master' into metadiet | Ariel Ben-Yehuda | -38/+17 |
| 2015-10-02 | Rollup merge of #28686 - eefriedman:unresolved-path-error, r=nikomatsakis | Manish Goregaokar | -2/+17 |
| 2015-10-01 | convert the creepy case to just return None -- in practice, it would | Niko Matsakis | -26/+1 |
| 2015-10-01 | Convert DefId to use DefIndex, which is an index into a list of | Niko Matsakis | -3/+3 |
| 2015-10-01 | move direct accesses of `node` to go through `as_local_node_id`, unless | Niko Matsakis | -15/+19 |
| 2015-10-01 | change creepy case to call span_bug instead of doing something clearly wrong | Niko Matsakis | -5/+5 |
| 2015-09-30 | Don't crash on non-existent path in constant. | Eli Friedman | -2/+17 |
| 2015-09-22 | Use Names in the remaining HIR structures with exception of... | Vadim Petrochenkov | -1/+1 |
| 2015-09-22 | Use Names in hir::{Field, ExprMethodCall, ExprField} | Vadim Petrochenkov | -3/+3 |
| 2015-09-22 | Use Names in HIR Items | Vadim Petrochenkov | -1/+1 |
| 2015-09-17 | Remove hir::ExprParen | Nick Cameron | -1/+0 |
| 2015-09-16 | Use ast attributes every where (remove HIR attributes). | Nick Cameron | -45/+45 |
| 2015-09-03 | Use consistent terminology for byte string literals | Vadim Petrochenkov | -5/+5 |
| 2015-09-03 | Add an intital HIR and lowering step | Nick Cameron | -154/+157 |
| 2015-08-26 | Rename FnKind variants and stop re-exporting them from the visit module. | Ms2ger | -5/+5 |
| 2015-08-24 | fallout from moving def-id | Niko Matsakis | -12/+12 |
| 2015-08-14 | move InlinedItem into librustc, where it belongs | Niko Matsakis | -6/+7 |
| 2015-08-04 | rustc: replace def::MethodProvenance with ty::ImplOrTraitItemContainer. | Eduard Burtescu | -5/+5 |
| 2015-07-28 | remove `get_ident` and `get_name`, make `as_str` sound | Oliver Schneider | -2/+3 |
| 2015-07-23 | eval_const_expr_partial now returns ConstVal::Struct instead of None for unit... | Antti Keränen | -0/+3 |
| 2015-07-22 | Auto merge of #26683 - eefriedman:const-eval-hint, r=pnkfelix | bors | -56/+115 |
| 2015-07-21 | Auto merge of #26935 - oli-obk:const_val_description, r=eddyb | bors | -30/+22 |
| 2015-07-17 | Clarify the usage of "hints" in const_eval. | Eli Friedman | -56/+115 |
| 2015-07-14 | Fix negate_unsigned feature gate check | Simonas Kazlauskas | -9/+0 |
| 2015-07-13 | simplify processing of ConstVal objects when not all variants are legal | Oliver Schneider | -30/+22 |
| 2015-06-30 | Remove Typer and ClosureTyper | Jared Roesch | -1/+1 |
| 2015-06-30 | Remove Typer + ClosureTyper impls for ParameterEnv | Jared Roesch | -1/+1 |
| 2015-06-30 | Use fresh FulfillmentContexts in select locations | Jared Roesch | -1/+1 |
| 2015-06-27 | Ground work for replacing the ClosureTyper trait | Jared Roesch | -1/+1 |
| 2015-06-27 | Begin refactor type checking state | Jared Roesch | -3/+2 |
| 2015-06-26 | rustc: switch most remaining middle::ty functions to methods. | Eduard Burtescu | -9/+9 |
| 2015-06-23 | change `const_val` enum and its variants to camel-case | Oliver Schneider | -116/+112 |
| 2015-06-19 | rustc: remove Repr and UserString. | Eduard Burtescu | -5/+4 |
| 2015-06-19 | rustc: use the TLS type context in Repr and UserString. | Eduard Burtescu | -2/+2 |
| 2015-06-12 | Cleanup: rename middle::ty::sty and its variants. | Eli Friedman | -21/+21 |
| 2015-06-10 | syntax: move ast_map to librustc. | Eduard Burtescu | -2/+3 |
| 2015-05-26 | Auto merge of #25091 - quantheory:trait_associated_const_fixes, r=nikomatsakis | bors | -13/+35 |
| 2015-05-21 | Make various fixes: | Niko Matsakis | -8/+8 |
| 2015-05-21 | rustc: const-qualify `const fn` function and method calls. | Eduard Burtescu | -1/+60 |
| 2015-05-19 | Overhaul cast semantics and make them follow RFC401 | Ariel Ben-Yehuda | -1/+1 |
| 2015-05-17 | Fix issue where trait-associated consts could cause ICEs in match patterns. | Sean Patrick Santos | -13/+35 |