about summary refs log tree commit diff
path: root/src/librustc/util
AgeCommit message (Expand)AuthorLines
2015-02-18rollup merge of #22480: alexcrichton/hashv3Alex Crichton-4/+136
2015-02-18rollup merge of #22452: nikomatsakis/issue-22040-18956-SelfAlex Crichton-1/+14
2015-02-18rollup merge of #22287: Ryman/purge_carthographersAlex Crichton-1/+1
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-4/+136
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-1/+1
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-1/+1
2015-02-18Remove the implicit `'static` bound on `Send`.Huon Wilson-3/+2
2015-02-17When converting parameters for an object type, be careful of defaults that re...Niko Matsakis-1/+14
2015-02-12Modify `repr()` so that when `-Z verbose` is used, at least, it does notNiko Matsakis-34/+58
2015-02-11Added DestructionScope variant to CodeExtent, representing the areaFelix S. Klock II-2/+17
2015-02-07Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichtonbors-7/+7
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-1/+1
2015-02-06librustc has been updatedGuillaumeGomez-7/+7
2015-02-06Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichtonManish Goregaokar-2/+0
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-7/+7
2015-02-04remove all kind annotations from closuresJorge Aparicio-3/+3
2015-02-03Switch missing_copy_implementations to default-allowSteven Fackler-2/+0
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-10/+10
2015-02-02Auto merge of #21647 - alfie:suffix-medium, r=alexcrichtonbors-2/+2
2015-02-01Separate out the unboxed closure table into two tables, so that we canNiko Matsakis-3/+3
2015-02-01More deprecating of i/u suffixes in librariesAlfie John-2/+2
2015-01-30Merge remote-tracking branch 'origin/master' into rollupAlex Crichton-0/+9
2015-01-30remove more `ExprForLoop`sJorge Aparicio-1/+1
2015-01-30custom message for refutable patterns in for loopsJorge Aparicio-0/+1
2015-01-30Remove the capture mode map and just store the capture mode for individual va...Niko Matsakis-0/+9
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29undo some conversionsJorge Aparicio-1/+1
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-1/+1
2015-01-28When pretty-printing object types, include the output associated typeNiko Matsakis-45/+97
2015-01-28Fix a latent bug in trait dispatch where we sometimes counted associated typesNiko Matsakis-1/+1
2015-01-28Move return type an associated type of the `Fn*` traits. Mostly this involves...Niko Matsakis-3/+5
2015-01-27Auto merge of #21523 - nikomatsakis:issue-21245-japaric-ti-failure, r=eddybbors-17/+19
2015-01-27Cleanup the unification engine to use associated types, making the code much ...Niko Matsakis-17/+19
2015-01-27Add `CodeExtent::Remainder` variant; pre-req for new scoping/drop rules.Felix S. Klock II-28/+44
2015-01-26Remove "unboxed" attribute in code referring to new closures.Eduard Burtescu-6/+5
2015-01-25Fix infinite recursion in the compiler.Huon Wilson-1/+1
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-2/+2
2015-01-21rollup merge of #21396: japaric/no-parens-in-rangeAlex Crichton-3/+3
2015-01-21rollup merge of #21372: arielb1/remove-the-boxAlex Crichton-48/+3
2015-01-21rollup merge of #21340: pshc/libsyntax-no-more-intsAlex Crichton-1/+1
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-20Remove onceness & bounds - they don't do anything.Ariel Ben-Yehuda-16/+3
2015-01-20Kill TraitStoreAriel Ben-Yehuda-37/+5
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-3/+3
2015-01-18Fix typedef/module name conflicts in the compilerAlex Crichton-34/+10
2015-01-17libsyntax: rename functions from uint to usizePaul Collier-1/+1
2015-01-15rollup merge of #21107: nikomatsakis/assoc-type-ice-hunt-take-1Alex Crichton-1/+1
2015-01-14Fix Repr output so that it does not ICE when a self-type isNiko Matsakis-1/+1
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-1/+1