about summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2012-09-07Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes.Graydon Hoare-35/+115
2012-09-07Remove support for multiple traits in a single implTim Chevalier-11/+12
2012-09-07Implement &-patternsTim Chevalier-4/+30
2012-09-07Add an ignore! macro, remove support for nested block comments, re: #2755.Graydon Hoare-12/+8
2012-09-07Remove module keywordBrian Anderson-18/+6
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-5/+5
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-21/+20
2012-09-07rustc: Make "ne" use traitsPatrick Walton-1/+2
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+32
2012-09-06Remove struct ctorsBrian Anderson-63/+50
2012-09-06Refactor trans to replace lvalue and friends with Datum.Niko Matsakis-21/+30
2012-09-05Accept Copy, Send, Const, Owned, as kind boundsBrian Anderson-0/+24
2012-09-05libsyntax: Make "pub use" mean the same thing as the former "import" in all c...Patrick Walton-5/+5
2012-09-05rustc: "import" -> "use" in .rc filesPatrick Walton-1/+1
2012-09-04rustc: Implement private methods.Patrick Walton-3/+3
2012-09-04Allow anonymous extern modsTim Chevalier-1/+8
2012-09-04Remove 'with'Brian Anderson-61/+46
2012-09-04syntax: Remove 'of' and 'check' from keyword tableBrian Anderson-2/+1
2012-09-04Parse 'loop' and 'again' the sameBrian Anderson-19/+38
2012-09-04libsyntax: "import" -> "use"Patrick Walton-208/+203
2012-09-02Camel case core::intrinsicBrian Anderson-2/+2
2012-09-01Remove the 'to' keywordBrian Anderson-2/+1
2012-08-31Make utility funs in core::int, core::uint, etc. not by-referenceTim Chevalier-3/+3
2012-08-31libsyntax: Get "extern mod foo;" working in .rc filesPatrick Walton-5/+20
2012-08-31rustc: Implement "use mod"Patrick Walton-37/+54
2012-08-31Fix anon-extern-mod pretty print test.Graydon Hoare-3/+5
2012-08-30rustc: "extern mod { ... }" should be written "extern { ... }" insteadPatrick Walton-4/+23
2012-08-30Bump version to 0.4Brian Anderson-3/+3
2012-08-29rustc: Make `<=`, `>=`, and `>` use traits as wellPatrick Walton-1/+4
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-20/+828
2012-08-29core: Demode int/uint modsBrian Anderson-3/+3
2012-08-29Allow extern mods to be anonymousTim Chevalier-9/+27
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-22/+22
2012-08-27Convert core::result to camel caseBrian Anderson-9/+9
2012-08-27rustc: more pattern cleanupErick Tryzelaar-9/+9
2012-08-26Camel case the option typeBrian Anderson-723/+723
2012-08-25libsyntax: Accept ',' to separate struct fields. Closes #3263.Patrick Walton-2/+14
2012-08-25rustc: Implement foreign constants.Patrick Walton-29/+62
2012-08-24Remove match checkTim Chevalier-11/+8
2012-08-24"earley_parser" -> "macro_parser" Let's be less confusing.Paul Stansifer-7/+7
2012-08-24Document the macro parser a little more.Paul Stansifer-2/+60
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-49/+48
2012-08-24fix some unused pattern binding warningsNiko Matsakis-19/+19
2012-08-24extend liveness to treat bindings more like other variablesNiko Matsakis-1/+3
2012-08-24Use a faked-up function as a key, because functions aren't identical cross-cr...Paul Stansifer-6/+20
2012-08-23Remove purity from fn_decl and move it out to containing AST elements.Michael Sullivan-84/+86
2012-08-23More complete fix to #3162 (borrowck bug related to access to rec fields)Niko Matsakis-15/+9
2012-08-23Parenthesize unary move exprs in prettyprinterTim Chevalier-1/+6