about summary refs log tree commit diff
path: root/src/rustc
AgeCommit message (Collapse)AuthorLines
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-216/+214
2012-09-19Remove final bits of residual hokey-hash functions. Close #1616.Graydon Hoare-2/+0
2012-09-19Remove redundant hashmap constructor functions.Graydon Hoare-113/+109
2012-09-19Remove unused hokey-hashes from typeck and region inference.Graydon Hoare-119/+1
2012-09-19Remove hokey-hashes from metadata indexes.Graydon Hoare-18/+10
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-145/+165
Note that the method foo.each() is not de-moded, nor the other vec routines.
2012-09-19use && for fn() even in legacy mode to work around mem leakNiko Matsakis-2/+12
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵Niko Matsakis-250/+231
demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready.
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-231/+250
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-13/+13
2012-09-18Revert "change relative priority of auto-slice and auto-ptr"Graydon Hoare-2/+2
This reverts commit 2ac64d91ac9df242c780d162863c8c0abce448b1.
2012-09-18Treat static slices and rptrs as sendable.Graydon Hoare-1/+11
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-9/+39
2012-09-18change relative priority of auto-slice and auto-ptrNiko Matsakis-2/+2
rationale: if you have an impl for &const ~[T] or &mut ~[T] and one for &[T], the first will be more likely to work and not lead to borrowck errors. I could imagine us wanting to offer multiple impls for methods we select the ptr-to-array when possible and the slice when necessary. Also, taking a ptr seems like fewer adaptations than slicing, and we tend to prefer fewer adaptations.
2012-09-18libcore: make a copyless io::BytesWriterErick Tryzelaar-30/+29
2012-09-18Change 'must' to 'should' in non_camel_case_types messageBrian Anderson-2/+3
2012-09-18libsyntax: Remove 'unchecked_blk' from ASTBrian Anderson-4/+0
2012-09-18Revert "rustc: Change all non-keyword uses of "link""Patrick Walton-39/+36
This reverts commit 3b013cd800ce675a445220105911bbefd2427e47.
2012-09-18Replace uses of 'unchecked' with 'unsafe'Brian Anderson-4/+4
2012-09-18make filetype() include the "." (fixes #3412)Niko Matsakis-1/+1
2012-09-18rustc: Change all non-keyword uses of "link"Patrick Walton-36/+39
2012-09-18Add allow(non_camel_case_types) to unconverted cratesBrian Anderson-0/+2
2012-09-18Revert "Adapt callee to avoid intermediary for move/copy arguments (cc #3402)"Niko Matsakis-88/+80
This reverts commit 044fbea416c8778ec8f653b93941dca6f2e9213e.
2012-09-17warn(non_camel_case_types) by defaultBrian Anderson-1/+1
2012-09-17Make auto-slice, auto-ptr not exclusive (fixes #3514)Niko Matsakis-7/+7
2012-09-17WIP: make autoslice, autoptr not be mutually exclusiveNiko Matsakis-36/+76
2012-09-15int/uint parse_buf => parse_bytes (#3444)Erick Tryzelaar-3/+3
2012-09-15libcore: rename *flate_buf to *flate_bytes (#3444)Erick Tryzelaar-3/+3
2012-09-15add some debug!'s to help diagnose failure of issue-1763.rsNiko Matsakis-1/+12
2012-09-15Fix broken assertion in regionck for code like (a[])()Niko Matsakis-4/+3
2012-09-15regionck: fix bug where autoref regions are not inferred to be large enoughNiko Matsakis-44/+101
2012-09-14rustc: Back out box annihilatorPatrick Walton-3/+4
2012-09-14Add core::reflect, start migrating core::repr to use it. Tidy up various ↵Graydon Hoare-1/+0
Repr types.
2012-09-14rustc: Call the box annihilator in mainPatrick Walton-2/+7
2012-09-14rustc: Make the box annihilator a language itemPatrick Walton-2/+5
2012-09-14Have parser recognize static, self region.Niko Matsakis-26/+51
Fixes a bug in methods that &self couldn't be referenced in the body. Also fixes #2479.
2012-09-14Adapt callee to avoid intermediary for move/copy arguments (cc #3402)Niko Matsakis-80/+88
2012-09-13Fix unused variable warning.Graydon Hoare-1/+0
2012-09-13Fix bug in auto-ref on bounded type parametersNiko Matsakis-14/+62
2012-09-13s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rsNiko Matsakis-5/+5
hat tip to @jruderman
2012-09-13remove commented code that used to cause borrowck errorNiko Matsakis-10/+0
Fixes #2280
2012-09-12Rename str::unsafe to str::rawBrian Anderson-2/+2
2012-09-12trans: overhaul match bindings. No more phi, one code path for guards.Niko Matsakis-401/+701
Fixes #3256. Fixes #3291.
2012-09-12Rename vec::unsafe to vec::rawBrian Anderson-22/+22
2012-09-12Promote 'const', 'copy', 'fn' to strict keywordsBrian Anderson-1/+1
2012-09-12purge the separate path for rel ops (e.g., ==) vs other bin opsNiko Matsakis-60/+22
2012-09-12rustc: Use the correct 'fail' rtcallBrian Anderson-1/+1
2012-09-12Add some monomorphizing instrumentation, simplify types before emitting glue.Graydon Hoare-4/+135
2012-09-12fixup mutability of vec::each, make iter_bytes pureNiko Matsakis-30/+30
also, change DVec() to work with imm vectors rather than mut ones
2012-09-12Rename core::rt_fail to core::rt_fail_Brian Anderson-1/+1