about summary refs log tree commit diff
path: root/src/test/auxiliary/cci_nested_lib.rs
AgeCommit message (Collapse)AuthorLines
2013-04-29test: Remove #[legacy_modes] from the test suite.Patrick Walton-8/+12
2013-03-08test: Removing dvec usesAlex Crichton-5/+3
2013-03-02test: Remove `fn@`, `fn~`, and `fn&` from the test suite. rs=defunPatrick Walton-1/+1
2013-03-02librustc: Forbid chained imports and fix the logic for one-level renaming ↵Patrick Walton-1/+1
imports
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-4/+4
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-1/+1
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-1/+1
2013-01-30test: De-export aux, bench, compile-fail, and run-fail. rs=deexportingPatrick Walton-7/+6
2013-01-26testsuite: Eliminate uses of structural records from most run-pass testsTim Chevalier-3/+4
Except the pipes tests (that needs a snapshot)
2013-01-09A collection of refactorings that I found it hard/tiresome to divide:Niko Matsakis-3/+3
- Make `extern fn()` assignable to any closure type, rather than a subtype. - Remove unused int_ty_set and float_ty_set - Refactor variable unification and make it more DRY - Do fn sub/lub/glb on the level of fn_sig - Rename infer::to_str::ToStr to infer::to_str::InferStr - Capitalize names of various types - Correct hashing of FnMeta - Convert various records-of-fns into structs-of-fns. This is both eliminating use of deprecated features and more forwards compatible with fn reform. r=pcwalton
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-09-24Build the export_map2 from visibility markers, unless #[legacy_exports];Graydon Hoare-0/+1
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-1/+3
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-4/+4
2012-09-05test: "import" -> "use"Patrick Walton-1/+1
2012-08-27Camel case various core constructorsBrian Anderson-3/+3
2012-08-15Convert more core types to camel caseBrian Anderson-2/+2
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-01Convert ret to returnBrian Anderson-3/+3
2012-07-01Convert to new closure syntaxBrian Anderson-1/+1
2012-06-06minor changes to tests so they pass borrowckNiko Matsakis-9/+9
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-1/+1
Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619
2012-03-07Fix #1941: inlining of items that themselves contain nested itemsNiko Matsakis-0/+29
The fix is to drop nested items from the encoded AST. Nested items may themselves be inlined, but that is an independent question.