summary refs log tree commit diff
path: root/src/libsyntax/ext/pipes
AgeCommit message (Collapse)AuthorLines
2012-12-17Change iter::find's closure to take a refErick Tryzelaar-2/+2
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-17/+9
2012-12-09Remove transitional codeBrian Anderson-135/+0
2012-12-07librustc: De-mode pattern bindings. r=nmatsakisPatrick Walton-1/+1
2012-12-07syntax: stage0-guard uses of #ast, rewrite as quote_foo! in stage1,2.Graydon Hoare-97/+122
2012-12-04librustc: Remove all legacy pattern bindings from libsyntax and librustc. ↵Patrick Walton-14/+14
rs=refactoring
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+70
2012-11-29impls of traits cannot define methods on the anonymous traitBrian Anderson-1/+9
2012-11-28Remove uses of #[merge]Brian Anderson-0/+70
2012-11-28Register snapshotsBrian Anderson-15/+0
2012-11-26Remove the crate languageBrian Anderson-0/+12
2012-11-20syntax: switch tt quoter to emit ~[tt], not tt.Graydon Hoare-0/+9
2012-11-19rustc: Implement explicit self for Eq and Ord. r=graydonPatrick Walton-0/+15
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-41/+30
2012-11-12Convert most codemap types from records to structsBrian Anderson-2/+2
2012-11-07rustc: Support irrefutable patterns in function arguments. r=nmatsakisPatrick Walton-2/+7
2012-10-23Don't generate move-by-init in AST builderTim Chevalier-2/+8
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-42/+42
2012-10-11Make to_str pure and fix const parameters for str-mutating functionsTim Chevalier-1/+1
Two separate changes that got intertwined (sorry): Make to_str pure. Closes #3691 In str, change functions like push_char to take an &mut str instead of an &str. Closes #3710
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-16/+6
One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes.
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-28Add a demoded version of ptr::addr_ofTim Chevalier-3/+3
Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not.
2012-09-28Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vecTim Chevalier-2/+2
2012-09-28demode vecNiko Matsakis-2/+2
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-45/+43
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-14/+0
2012-09-23Make it illegal to use modes in a fn signature with providingNiko Matsakis-2/+2
an explicit variable name. (Step one to changing the defaults) First step to #3535
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-5/+5
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-1/+3
#[legacy_exports];
2012-09-20Revert "syntax: Make attributes sendable for rustdoc's benefit"Brian Anderson-2/+2
This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8.
2012-09-20syntax: Make attributes sendable for rustdoc's benefitBrian Anderson-2/+2
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-0/+14
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-4/+4
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-9/+5
2012-09-10Make all moves explicit in libsyntaxTim Chevalier-2/+2
2012-09-10Convert class methods to impl methods. Stop parsing class methodsBrian Anderson-0/+3
2012-09-10Make moves explicit in pipes and pipe compilerTim Chevalier-16/+17
2012-09-10rustc: Make shape-based compare glue never called for comparison operators.Patrick Walton-1/+1
Only called for string patterns.
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-4/+4
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+1
2012-09-06Remove struct ctorsBrian Anderson-7/+9
2012-09-04Remove 'with'Brian Anderson-4/+4
2012-09-04libsyntax: "import" -> "use"Patrick Walton-26/+25
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-2/+11
2012-08-28CamelCasify lots of stdBen Striegel-3/+3
2012-08-28Convert core::pipes to camel caseBrian Anderson-11/+25
2012-08-27Camel case various core constructorsBrian Anderson-4/+4
2012-08-26Camel case the option typeBrian Anderson-32/+32
2012-08-24fix some unused pattern binding warningsNiko Matsakis-2/+2
2012-08-23Remove purity from fn_decl and move it out to containing AST elements.Michael Sullivan-1/+1