summary refs log tree commit diff
path: root/src/libsyntax/ast_util.rs
AgeCommit message (Expand)AuthorLines
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-1/+3
2012-08-29core: Demode int/uint modsBrian Anderson-2/+2
2012-08-26Camel case the option typeBrian Anderson-24/+24
2012-08-24fix some unused pattern binding warningsNiko Matsakis-3/+3
2012-08-23Remove purity from fn_decl and move it out to containing AST elements.Michael Sullivan-3/+4
2012-08-22intern identifiersPaul Stansifer-4/+6
2012-08-21more sound treatment of fn& regions; change all & to be distinctNiko Matsakis-4/+4
2012-08-15rustc: Perform some AST surgery to separate out class fields from methodsPatrick Walton-37/+10
2012-08-15rustc: Parse labeled loop, break, and againPatrick Walton-1/+1
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-08rustc: Do some plumbing work in preparation for common fields in enumsPatrick Walton-3/+4
2012-08-07rustc: Box struct_defsPatrick Walton-1/+1
2012-08-07Implement static typeclass methods. Closes #3132.Michael Sullivan-1/+1
2012-08-07libsyntax: Allow users of the visitor to visit struct defsPatrick Walton-0/+4
2012-08-07Add missing commaBrian Anderson-1/+1
2012-08-07rustc: Add stub support for struct variants to the ASTPatrick Walton-5/+6
2012-08-07syntax: Make match arm parsing more restrictive againBrian Anderson-4/+4
2012-08-06rustc: Implement pattern matching for structsPatrick Walton-1/+2
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-40/+40
2012-08-05Switch alts to use arrowsBrian Anderson-151/+157
2012-08-02Purge placement new; Make borrowck know about unary move.Niko Matsakis-1/+1
2012-08-02Make typeck::collect aware of provided methods in traits.Lindsey Kuper-0/+12
2012-08-02Extend ast_map to know about method declarations in traits.Michael Sullivan-0/+13
2012-08-02Remove modes from map API and replace with regions.Niko Matsakis-5/+5
2012-08-01Convert ret to returnBrian Anderson-49/+49
2012-08-01syntax: Allow any block-like expr to be used as alt arm w/o comma separatorBrian Anderson-7/+0
2012-07-31rustc: Parse by-reference pattern bindings with the "ref" keywordPatrick Walton-2/+2
2012-07-31accept naked exprs with commas in pattern armsNiko Matsakis-0/+7
2012-07-31Fix pretty-printer breakage: `1000f` -> `1000`.Paul Stansifer-1/+1
2012-07-30Frontend bits for #2317, general const-expr classification.Graydon Hoare-0/+3
2012-07-27rustc: Use coherence for operator overloading.Patrick Walton-0/+16
2012-07-27Correctly forbid upvars in nested impls, traits and classesTim Chevalier-1/+2
2012-07-26rustc: Fix cross-crate max/min-class-style constructorsPatrick Walton-1/+1
2012-07-19Revert "accept naked exprs with commas in pattern arms" due to pretty-printin...Patrick Walton-7/+0
2012-07-18accept naked exprs with commas in pattern armsNiko Matsakis-0/+7
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-1/+7
2012-07-17Support attributes on class ctors and dtorsTim Chevalier-2/+2
2012-07-14remove typestate from code, tests, and docsNiko Matsakis-14/+2
2012-07-14Move the world over to using the new style string literals and types. Closes ...Michael Sullivan-40/+40
2012-07-13Support prefix notation for vstore strings. Closes #2906.Michael Sullivan-1/+1
2012-07-13Front-end support for default impls in traits.Lindsey Kuper-0/+3
2012-07-12Obliterate the callee_id hackTim Chevalier-12/+1
2012-07-11infer when types are region parameterized rather than requiring /&Niko Matsakis-2/+5
2012-07-04convert doc-attributes to doc-comments using ./src/etc/sugarise-doc-comments....Gareth Daniel Smith-1/+1
2012-07-03Revert "Remove rule requiring non-nil block-style statements to be semi-termi...Brian Anderson-0/+1
2012-07-03Remove rule requiring non-nil block-style statements to be semi-terminatedBrian Anderson-1/+0
2012-07-02rustc: Implement a new resolve pass behind a compile flagPatrick Walton-0/+7
2012-07-01Convert to new closure syntaxBrian Anderson-22/+28
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-9/+9
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-14/+14