about summary refs log tree commit diff
path: root/src/librustc/middle/expr_use_visitor.rs
AgeCommit message (Expand)AuthorLines
2017-03-30adding debug in consume_body functionGAJaloyan-0/+2
2017-03-30refactor if so that the "then type" is an expressionNiko Matsakis-2/+2
2017-02-23Implement non-capturing closure to fn coercionest31-0/+1
2017-01-26Auto merge of #39066 - arielb1:lifetime-extension-test, r=nikomatsakisbors-0/+1
2017-01-26rustc: rename TyCtxt's `map` field to `hir`.Eduard-Mihai Burtescu-2/+2
2017-01-25end temporary lifetimes being extended by `let X: &_` hintsAriel Ben-Yehuda-0/+1
2017-01-06rustc: keep track of tables everywhere as if they were per-body.Eduard-Mihai Burtescu-2/+2
2016-12-28rustc: simplify constant cross-crate loading and rustc_passes::consts.Eduard-Mihai Burtescu-1/+1
2016-12-28rustc: move function arguments into hir::Body.Eduard-Mihai Burtescu-12/+5
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-5/+4
2016-11-29rustc: simplify AdtDef by removing the field types and ty::ivar.Eduard-Mihai Burtescu-1/+1
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-13/+17
2016-11-28rustc: desugar UFCS as much as possible during HIR lowering.Eduard Burtescu-1/+1
2016-11-21Implement the `loop_break_value` feature.Geoffry Song-3/+2
2016-11-22Change HirVec<P<T>> to HirVec<T> in Expr.Nicholas Nethercote-1/+1
2016-11-10Rollup merge of #37412 - eddyb:lazy-6, r=nikomatsakisEduard-Mihai Burtescu-3/+3
2016-11-10rustc: unify and simplify managing associated items.Eduard Burtescu-2/+2
2016-11-10rustc: use an Expr instead of a Block for function bodies.Eduard Burtescu-3/+3
2016-11-02rustc: record the target type of every adjustment.Eduard Burtescu-32/+23
2016-10-27Preparations and cleanupVadim Petrochenkov-1/+1
2016-10-04Turn some impossible definitions into ICEsVadim Petrochenkov-1/+3
2016-10-04Separate Def::StructCtor/Def::VariantCtor from Def::Struct/Def::VariantVadim Petrochenkov-2/+3
2016-09-28Call arrays "arrays" instead of "vecs" internallyJonas Schievink-1/+1
2016-09-20rustc_metadata: group information into less tags.Eduard Burtescu-1/+2
2016-09-20rustc: replace uses of NodeId in Def, other than closures and labels.Eduard Burtescu-2/+3
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-20/+23
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-4/+4
2016-09-04Replace `_, _, _` with `..`Vadim Petrochenkov-1/+1
2016-09-03Address comments and add requested testsVadim Petrochenkov-23/+20
2016-09-03Implement encoding/decoding unions in metadataVadim Petrochenkov-5/+1
2016-09-03Some better support for unions through the compilerVadim Petrochenkov-22/+29
2016-08-27rustc: pass ty::Region behind an interned 'tcx reference.Eduard Burtescu-14/+16
2016-08-13Rename empty/bang to neverAndrew Cann-1/+1
2016-08-13Add EmptyToAny adjustmentAndrew Cann-0/+1
2016-07-25move `during_closure_kind_inference` flag to mcNiko Matsakis-2/+11
2016-07-08Cleanup of some pattern related codeVadim Petrochenkov-99/+39
2016-07-03prefer `if let` to match with `None => {}` arm in some placesZack M. Davis-20/+17
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+1
2016-06-10Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos...Vadim Petrochenkov-11/+7
2016-06-09implement RFC495 semantics for slice patternsAriel Ben-Yehuda-34/+0
2016-05-28Address review commentsVadim Petrochenkov-6/+1
2016-05-28Refactor away some functions from hir::pat_utilVadim Petrochenkov-87/+70
2016-05-28Separate bindings from other patterns in HIRVadim Petrochenkov-16/+9
2016-05-26Implement `..` in tuple (struct) patternsVadim Petrochenkov-1/+1
2016-05-11rustc_typeck: Generalize over 'tcx != 'gcx.Eduard Burtescu-11/+9
2016-05-11rustc: Remove a redundant lifetime parameter from ExprUseVisitor.Eduard Burtescu-4/+4
2016-05-11rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users.Eduard Burtescu-39/+38
2016-05-11rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper.Eduard Burtescu-3/+3
2016-04-24thread tighter span for closures aroundNiko Matsakis-5/+5
2016-04-06rustc: move middle::{def,def_id,pat_util} to hir.Eduard Burtescu-3/+3