about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-1/+1
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-17/+16
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+1
2012-09-06Remove struct ctorsBrian Anderson-55/+41
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-04rustc: Implement private methods.Patrick Walton-1/+2
2012-09-04Remove 'with'Brian Anderson-22/+8
2012-09-04Parse 'loop' and 'again' the sameBrian Anderson-18/+35
2012-09-04libsyntax: "import" -> "use"Patrick Walton-16/+16
2012-09-01Remove the 'to' keywordBrian Anderson-1/+1
2012-08-31libsyntax: Get "extern mod foo;" working in .rc filesPatrick Walton-5/+20
2012-08-31rustc: Implement "use mod"Patrick Walton-20/+30
2012-08-30rustc: "extern mod { ... }" should be written "extern { ... }" insteadPatrick Walton-4/+23
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-0/+7
2012-08-29Allow extern mods to be anonymousTim Chevalier-4/+9
2012-08-27Camel case various core constructorsBrian Anderson-2/+2
2012-08-27Convert core::result to camel caseBrian Anderson-1/+1
2012-08-26Camel case the option typeBrian Anderson-141/+141
2012-08-25libsyntax: Accept ',' to separate struct fields. Closes #3263.Patrick Walton-1/+13
2012-08-25rustc: Implement foreign constants.Patrick Walton-29/+47
2012-08-24Remove match checkTim Chevalier-3/+1
2012-08-23Remove purity from fn_decl and move it out to containing AST elements.Michael Sullivan-35/+29
2012-08-23`m1!{...}` is now forbidden. Use `m1!(...)` instead.Paul Stansifer-18/+7
2012-08-23Eliminate some extraneous curly brackets inside invocations of `macro_rules!`.Paul Stansifer-6/+6
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-23/+23
2012-08-22Parse and typecheck moving out of enums (#2329)Ben Blum-1/+6
2012-08-22Change the log level to be an enum rather than an intTim Chevalier-1/+1
2012-08-22intern identifiersPaul Stansifer-29/+30
2012-08-17Parse explicit self in more places. Work on #2585.Michael Sullivan-54/+68
2012-08-17Stop parsing `iface`.Lindsey Kuper-6/+0
2012-08-17Remove the class keywordBrian Anderson-3/+2
2012-08-16libsyntax: Fix parsing of "loop unsafe".Patrick Walton-1/+1
2012-08-15Long linesBrian Anderson-2/+2
2012-08-15libsyntax: Parse tuple and unit structsPatrick Walton-44/+72
2012-08-15rustc: Fix long lines and trailing whitespacePatrick Walton-7/+6
2012-08-15rustc: Perform some AST surgery to separate out class fields from methodsPatrick Walton-15/+46
2012-08-15libsyntax: Parse nested enumsPatrick Walton-23/+34
2012-08-15rustc: Parse labeled loop, break, and againPatrick Walton-3/+19
2012-08-15rustc: "as Trait" can now be written "as @Trait".Patrick Walton-1/+1
2012-08-15Convert more core types to camel caseBrian Anderson-8/+8
2012-08-14Make most forms of explicit self work. By-value not implemented. Work on #2585.Michael Sullivan-23/+1
2012-08-14libsyntax: Parse "extern mod foo;"Patrick Walton-37/+100
2012-08-14libsyntax: Give a nice error message when view items are used anywhere other ...Patrick Walton-0/+24
2012-08-14libsyntax: First steps toward parsing "extern mod std;"Patrick Walton-22/+37
2012-08-13libsyntax: Implement [int*3] syntax for fixed length vector typesPatrick Walton-1/+29
2012-08-13Stop parsing old operator overloading syntaxBrian Anderson-16/+1
2012-08-13libsyntax: Allow "use" to be used in place of "import"Patrick Walton-3/+9
2012-08-13libsyntax: Accept "1..3" as the preferred form of "1 to 3" in patternsPatrick Walton-1/+1
2012-08-13libsyntax: Refactor item parsing so that items and view items are parsed in t...Patrick Walton-30/+113