summary refs log tree commit diff
path: root/src/librustc/middle/expr_use_visitor.rs
AgeCommit message (Expand)AuthorLines
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
2016-04-06rustc: dismantle hir::util, mostly moving functions to methods.Eduard Burtescu-3/+3
2016-04-06rustc: move rustc_front to rustc::hir.Eduard Burtescu-4/+4
2016-03-31librustc: replace span_bug calls with span_bug!()Benjamin Herr-15/+13
2016-03-31librustc: replace tcx.sess.bug calls with bug!()Benjamin Herr-1/+1
2016-03-27rustc: move cfg, infer, traits and ty from middle to top-level.Eduard Burtescu-2/+2
2016-03-22try! -> ?Jorge Aparicio-1/+1
2016-03-17hir, mir: Separate HIR expressions / MIR operands from InlineAsm.Eduard Burtescu-10/+7
2016-03-09Split TyBareFn into TyFnDef and TyFnPtr.Eli Friedman-1/+1
2016-03-06Auto merge of #30884 - durka:inclusive-ranges, r=aturonbors-5/+0
2016-03-03Rename middle::ty::ctxt to TyCtxtJeffrey Seyfried-5/+4
2016-02-27fallout from removing hir::ExprRangeAlex Burka-5/+0
2016-02-20make *mut T -> *const T a coercionAriel Ben-Yehuda-2/+3
2016-02-16Split PatKind::Enum into PatKind::TupleStruct and PatKind::PathVadim Petrochenkov-1/+1
2016-02-14Rename hir::Pat_ and its variantsVadim Petrochenkov-12/+12
2016-02-12Autoderef in librustcJonas Schievink-55/+55
2016-01-20Rename Def's variants and don't reexport themVadim Petrochenkov-8/+9
2016-01-20Refactor definitions of ADTs in rustc::middle::defVadim Petrochenkov-14/+3
2016-01-11Rollup merge of #30737 - Ms2ger:MutateMode, r=sanxiynSimonas Kazlauskas-5/+8
2016-01-06Stop re-exporting MutateMode's variants.Ms2ger-5/+8
2016-01-05Workaround stage0 bugNiko Matsakis-1/+1
2015-12-21Register new snapshotsAlex Crichton-2/+0
2015-12-19Auto merge of #30184 - petrochenkov:ascr, r=nikomatsakisbors-0/+4
2015-12-18Abstract away differences between Vec and ptr::P in HIRVadim Petrochenkov-3/+3