summary refs log tree commit diff
path: root/src/librustc_borrowck/borrowck
AgeCommit message (Expand)AuthorLines
2015-09-09Treat loans of 'static data as extending to the end of the enclosingNiko Matsakis-11/+1
2015-09-03Add an intital HIR and lowering stepNick Cameron-46/+54
2015-08-31Auto merge of #28007 - Ms2ger:FnKind, r=nrcbors-3/+3
2015-08-26Rename FnKind variants and stop re-exporting them from the visit module.Ms2ger-3/+3
2015-08-25move destructors_for_type into AdtDefAriel Ben-Yehuda-3/+3
2015-08-24store the CodeExtent directly in FreeRegionAriel Ben-Yehuda-3/+1
2015-08-24Use a Vec instead of an HashMap for the scope hierarchyAriel Ben-Yehuda-26/+31
2015-08-24split ReInfer into ReVar and ReSkolemizedAriel Ben-Yehuda-1/+2
2015-08-24Auto merge of #27857 - Manishearth:improve-fnkind, r=pnkfelixbors-1/+1
2015-08-24convert to use `is_local` instead of `== LOCAL_CRATE`Niko Matsakis-3/+3
2015-08-24fallout from moving def-idNiko Matsakis-6/+8
2015-08-16FnFnBlock -> FkClosureManish Goregaokar-1/+1
2015-08-06use VariantDef instead of struct_fieldsAriel Ben-Yehuda-24/+14
2015-08-06introduce an ADTDef struct for struct/enum definitionsAriel Ben-Yehuda-26/+24
2015-07-28Auto merge of #27234 - oli-obk:move_get_name_get_ident_to_impl, r=eddybbors-2/+1
2015-07-28remove `get_ident` and `get_name`, make `as_str` soundOliver Schneider-2/+1
2015-07-28build fragmented map earlier to make its dependencies clearer.Felix S. Klock II-4/+3
2015-07-28rustc and rustc::borrowck: pass fragment info down into trans.Felix S. Klock II-4/+98
2015-07-11Suggest using `ref` inline in an errorP1start-2/+13
2015-07-03Auto merge of #26378 - arielb1:unused-mut, r=pnkfelixbors-271/+135
2015-07-01Make the unused_mut lint smarter with respect to locals.Ariel Ben-Yehuda-17/+8
2015-07-01Clean-up assignment checking in borrowckAriel Ben-Yehuda-264/+137
2015-06-30Remove Typer and ClosureTyperJared Roesch-1/+0
2015-06-30Remove Typer + ClosureTyper impls for ParameterEnvJared Roesch-7/+10
2015-06-26rustc: switch most remaining middle::ty functions to methods.Eduard Burtescu-27/+23
2015-06-24Use correct type for "use of moved value" error with closures.Nick Hamann-1/+1
2015-06-19rustc: remove Repr and UserString.Eduard Burtescu-98/+94
2015-06-19rustc: replace Repr/UserString impls with Debug/Display ones.Eduard Burtescu-32/+32
2015-06-19Clean up unused argument/variable warnings.Eduard Burtescu-6/+4
2015-06-19rustc: use the TLS type context in Repr and UserString.Eduard Burtescu-75/+75
2015-06-19rustc: leave only one free top-level function in ppaux, and private.Eduard Burtescu-2/+3
2015-06-19rustc: reduce ppaux's public footprint to 5 functions.Eduard Burtescu-20/+14
2015-06-16Remove unused type InteriorSafety.Eli Friedman-16/+4
2015-06-12Cleanup: rename middle::ty::sty and its variants.Eli Friedman-7/+7
2015-06-11Auto merge of #26190 - Veedrac:no-iter, r=alexcrichtonbors-3/+3
2015-06-11Conver reborrows to .iter() calls where appropriateJoshua Landau-2/+2
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-1/+1
2015-06-10Auto merge of #26182 - Manishearth:rollup, r=Manishearthbors-9/+9
2015-06-10Rollup merge of #26146 - steveklabnik:remove_unsafe_pointer, r=GankroManish Goregaokar-2/+2
2015-06-10syntax: move ast_map to librustc.Eduard Burtescu-2/+2
2015-06-09Exise 'unsafe pointer' in favor of 'raw pointer'Steve Klabnik-2/+2
2015-06-09Exise 'owned pointer' from the codebaseSteve Klabnik-7/+7
2015-05-26Convert 15 diagnostics to have error codes (E0380-E0394).Nick Hamann-38/+33
2015-05-03Update old uses of ~ in comments and debugging statementsCarol Nichols-1/+1
2015-04-27Auto merge of #23606 - quantheory:associated_const, r=nikomatsakisbors-0/+14
2015-04-23Functional changes for associated constants. Cross-crate usage of associated ...Sean Patrick Santos-0/+14
2015-04-18Rather than storing the relations between free-regions in a globalNiko Matsakis-7/+43
2015-04-15Dataflow changes and associated borrowck fix.Felix S. Klock II-6/+16
2015-04-10Improve error message where a closure escapes fn while trying to borrowNiko Matsakis-9/+53
2015-04-08Modify the ExprUseVisitor to walk each part of an AutoRef, and inNiko Matsakis-0/+3