summary refs log tree commit diff
path: root/src/librustc/metadata/tydecode.rs
AgeCommit message (Expand)AuthorLines
2014-01-03librustc: Remove `@mut` support from the typechecker and borrow checkerPatrick Walton-1/+1
2013-12-27librustc: Implement coercion for traits.Luqman Aden-0/+6
2013-12-26librustc: De-`@mut` `ty::ctxt_::rcache`Patrick Walton-3/+9
2013-12-19librustc: Add missing case for the `Pod` bound in `tydecode`.Patrick Walton-2/+5
2013-12-11Make 'self lifetime illegal.Erik Price-4/+4
2013-12-08Remove dead codesKiet Tran-29/+0
2013-12-04std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter.Huon Wilson-2/+2
2013-12-04std::str: remove from_utf8.Huon Wilson-6/+8
2013-11-26auto merge of #10670 : eddyb/rust/node-u32, r=alexcrichtonbors-13/+13
2013-11-27Shink NodeId, CrateNum, Name and Mrk down to 32 bits on x64.Eduard Burtescu-13/+13
2013-11-26librustc: Remove remaining uses of `&fn()` in favor of `||`.Patrick Walton-1/+1
2013-11-19librustc: Change most uses of `&fn()` to `||`.Patrick Walton-5/+3
2013-11-08Merge failuresNiko Matsakis-0/+1
2013-11-08Rename and modernize region enum namesNiko Matsakis-10/+10
2013-11-08Update various tests and libraries that were incorrectlyNiko Matsakis-11/+11
2013-11-08Generalize AST and ty::Generics to accept multiple lifetimes.Niko Matsakis-44/+64
2013-11-04libsyntax/librustc: Allow calling variadic foreign functions.Luqman Aden-3/+10
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-16/+16
2013-10-01remove the `float` typeDaniel Micay-1/+0
2013-09-30rustc: Remove usage of fmt!Alex Crichton-19/+19
2013-09-23librustc: Remove garbage collected functions from front/{config,test} and met...Patrick Walton-2/+1
2013-09-05Rename str::from_bytes to str::from_utf8, closes #8985Florian Hahn-2/+2
2013-09-03Modernized a few more types in syntax::astMarvin Löbel-7/+7
2013-09-02Renamed syntax::ast::ident -> IdentMarvin Löbel-3/+3
2013-08-27librustc: Ensure that type parameters are in the right positions in paths.Patrick Walton-1/+1
2013-08-27librustc: Add support for type parameters in the middle of paths.Patrick Walton-6/+14
2013-08-27librustc: Remove `&const` and `*const` from the language.Patrick Walton-1/+0
2013-07-26Eliminate unused variable warnings.Michael Sullivan-2/+2
2013-07-24Generalize the `ty::substs` struct so that it can representNiko Matsakis-2/+18
2013-07-17librustc: Remove the `Copy` bound from the language.Patrick Walton-3/+0
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-1/+4
2013-07-10Add an identifier to TypeParameterDefs and use it to pretty print type parame...Niko Matsakis-1/+2
2013-06-29Great renaming: propagate throughout the rest of the codebaseCorey Richardson-3/+2
2013-06-29'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f...Ben Blum-20/+20
2013-06-28librustc: Remove the broken overloaded assign-ops from the language.Patrick Walton-1/+3
2013-06-28librustc: Change Const to Freeze in the compilerPatrick Walton-1/+1
2013-06-28librustc: Rename Owned to Send in the compilerPatrick Walton-1/+1
2013-06-27auto merge of #7430 : huonw/rust/vec-kill, r=thestingerbors-3/+2
2013-06-27Convert vec::[mut_]slice to methods, remove vec::const_slice.Huon Wilson-3/+2
2013-06-24Merge remote-tracking branch 'cmr/various-cleanup' into incomingBrian Anderson-2/+1
2013-06-23Parse and typecheck (not kindcheck) bounds on trait paths.Ben Blum-1/+2
2013-06-21Remove `ast::pure_fn` and all concept of `pure` from the compilerCorey Richardson-2/+1
2013-06-08tydecode: Accept a plain borrowed pointer to the dataBjörn Steinbrink-8/+8
2013-06-08Avoid unnecessary heap allocations in the metadata ty decoderBjörn Steinbrink-46/+43
2013-05-30Add 'Sized' builtin kind; doesn't do anything yetBen Blum-0/+3
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+3
2013-05-22libextra: Rename the actual metadata names of libcore to libstd and libstd to...Patrick Walton-0/+2
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-21/+21
2013-05-16Add BuiltinBounds to closure type: parse and handle subtyping,Niko Matsakis-3/+5
2013-05-15auto merge of #6487 : recrack/rust/vec_len, r=thestingerbors-1/+1