about summary refs log tree commit diff
path: root/src/test/auxiliary
AgeCommit message (Collapse)AuthorLines
2012-10-04De-mode comm::ChanTim Chevalier-1/+1
2012-10-01Move over to calling ptr::addr_ofTim Chevalier-3/+3
Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that.
2012-09-25Respect privacy qualifiers on view items, add to import resolutions.Graydon Hoare-0/+13
2012-09-24Build the export_map2 from visibility markers, unless #[legacy_exports];Graydon Hoare-0/+29
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-1/+21
#[legacy_exports];
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-1/+4
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-10/+10
2012-09-11Remove priv sections from classes. Obsolete the syntaxBrian Anderson-20/+7
2012-09-10Convert std::map to camel caseBrian Anderson-2/+2
2012-09-10Convert class methods to impl methods. Stop parsing class methodsBrian Anderson-40/+60
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-16/+16
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-22/+22
2012-09-06Remove struct ctorsBrian Anderson-24/+89
2012-09-05test: "import" -> "use"Patrick Walton-15/+15
2012-09-04Allow anonymous extern modsTim Chevalier-0/+9
Now you can write: extern { f() -> int; } and f will be accessible in the enclosing scope.
2012-08-27Camel case various core constructorsBrian Anderson-5/+5
2012-08-26Camel case the option typeBrian Anderson-9/+9
2012-08-23fix atomic intrinsic test casesBen Blum-12/+12
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-11/+11
2012-08-17Remove the class keywordBrian Anderson-12/+12
2012-08-16Attempt to get issue 3012 test working on win32.Graydon Hoare-0/+1
2012-08-15Test case for #3012Tim Chevalier-0/+12
2012-08-15Convert more core types to camel caseBrian Anderson-1/+1
2012-08-15Convert more core types to camel caseBrian Anderson-4/+4
2012-08-14Add test for #2472Brian Anderson-0/+14
2012-08-13core: Camel case some lesser-used modulesBrian Anderson-12/+12
2012-08-08Convert impls to new syntaxBrian Anderson-17/+15
2012-08-07Implement static typeclass methods. Closes #3132.Michael Sullivan-0/+33
2012-08-06test: Modernize and un-XFAIL issue-2242-d.rs (issue #2242)Patrick Walton-5/+5
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-1/+1
2012-08-02test: "iface" -> "trait" in filenames.Lindsey Kuper-0/+0
2012-08-01Convert ret to returnBrian Anderson-8/+8
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-3/+3
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-11/+11
2012-07-24Test case for #3005Eric Holk-0/+19
2012-07-23tests: Rename to avoid colliding with real rust-zmq.Erick Tryzelaar-1/+1
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-6/+33
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-14/+14
#2907.
2012-07-12Accept prefix notation for writing the types of str/~ and friends.Michael Sullivan-1/+1
2012-07-12rustc: Make all impls even more reachableBrian Anderson-0/+28
With this we write metadata for all impls so that we can properly find reexported impls.
2012-07-11Test for #2723. Closes #2723Tim Chevalier-0/+3
2012-07-09Fix metadata serialization of foreign functions. Properly take the value of ↵Josh Matthews-0/+22
foreign functions from other crates to fix #1840.
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-13/+13
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-04Remove empty argument lists from do expressionsBen Striegel-1/+1
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-3/+3
2012-07-01Convert to new closure syntaxBrian Anderson-4/+4
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-2/+2
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-7/+7
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-1/+1
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-7/+7