summary refs log tree commit diff
path: root/src/librustc/middle/dead.rs
AgeCommit message (Expand)AuthorLines
2015-10-25syntax/rustc_front: Simplify VariantData::fieldsVadim Petrochenkov-1/+1
2015-10-13Merge VariantData and VariantData_Vadim Petrochenkov-4/+5
2015-10-13Merge struct fields and struct kindVadim Petrochenkov-2/+2
2015-10-13Dict -> Struct, StructDef -> VariantData, def -> dataVadim Petrochenkov-5/+5
2015-10-13Provide span for visit_struct_def + remove some dead codeVadim Petrochenkov-1/+1
2015-10-13Remove now redundant NodeId from VariantVadim Petrochenkov-3/+3
2015-10-13Decouple structure kinds from NodeIdsVadim Petrochenkov-1/+3
2015-10-01Make calling def_id on a DefSelfTy an error; the previous defids thatNiko Matsakis-0/+1
2015-10-01move direct accesses of `node` to go through `as_local_node_id`, unlessNiko Matsakis-24/+35
2015-10-01move job of creating local-def-ids to ast-map (with a few stragglers)Niko Matsakis-2/+2
2015-09-22Use Names in the remaining HIR structures with exception of...Vadim Petrochenkov-4/+4
2015-09-22Use Names in hir::{Field, ExprMethodCall, ExprField}Vadim Petrochenkov-2/+2
2015-09-22Use Names in HIR ItemsVadim Petrochenkov-4/+4
2015-09-22Use Names in HIR visitors and foldersVadim Petrochenkov-1/+1
2015-09-17Correctly walk import lists in AST visitorsVadim Petrochenkov-0/+5
2015-09-16Use ast attributes every where (remove HIR attributes).Nick Cameron-3/+3
2015-09-03Add an intital HIR and lowering stepNick Cameron-66/+66
2015-08-24fallout from moving def-idNiko Matsakis-5/+5
2015-08-12Fix #23808: dead_code lint: visit types in pathsTim Neumann-0/+10
2015-08-06use VariantDef instead of struct_fieldsAriel Ben-Yehuda-31/+12
2015-08-06introduce an ADTDef struct for struct/enum definitionsAriel Ben-Yehuda-4/+4
2015-07-04rustc: remove MethodOrigin and use the container to distinguish inherent meth...Eduard Burtescu-11/+4
2015-07-04rustc: simplify ty::MethodOrigin and avoid trait item indices.Eduard Burtescu-23/+1
2015-07-04rustc: remove unused MethodStaticClosure variant of MethodOrigin.Eduard Burtescu-1/+0
2015-06-27Begin refactor type checking stateJared Roesch-1/+1
2015-06-26rustc: switch most remaining middle::ty functions to methods.Eduard Burtescu-13/+10
2015-06-22Do not consider fields matched by wildcard patterns to be usedSeo Sanghyeon-0/+3
2015-06-17Auto merge of #25961 - sanxiyn:dead-variant-2, r=huonwbors-1/+27
2015-06-12Cleanup: rename middle::ty::sty and its variants.Eli Friedman-2/+2
2015-06-11Conver reborrows to .iter() calls where appropriateJoshua Landau-2/+2
2015-06-10syntax: move ast_map to librustc.Eduard Burtescu-1/+2
2015-06-02Extend dead code lint to detect more unused enum variantsSeo Sanghyeon-1/+27
2015-04-23Fix dead code check for associated const impls.Sean Patrick Santos-22/+32
2015-04-23Structural changes for associated constantsSean Patrick Santos-9/+4
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-14Expose visibility for fns in syntax::visitNick Cameron-1/+1
2015-04-03In librustc*, convert many uses of ast::Ident to ast::Name, fixing much of #6...Jonathan S-10/+15
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-1/+1
2015-03-23Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses ofNiko Matsakis-2/+2
2015-03-14Revert "Extend dead code lint to detect more unused enum variants"Manish Goregaokar-27/+1
2015-03-13Rollup merge of #21468 - sanxiyn:dead-variant, r=Manish Goregaokar-1/+27
2015-03-11syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int...Eduard Burtescu-6/+7
2015-03-11syntax: gather common fields of impl & trait items into their respective types.Eduard Burtescu-31/+26
2015-03-11syntax: move indirection around {Trait,Impl}Item, from within.Eduard Burtescu-2/+2
2015-02-24rustc: combine partial_def_map and last_private_map into def_map.Eduard Burtescu-5/+5
2015-02-24syntax: use a single Path for Trait::Item in QPath.Eduard Burtescu-5/+0
2015-02-24syntax: don't use TraitRef in QPath.Eduard Burtescu-0/+5
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-1/+1
2015-02-11rollup merge of #22048: LeoTestard/impl-patterns-usedAlex Crichton-1/+1
2015-02-10Make the live code analysis visit method declarations.Leo Testard-1/+1