about summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
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-3/+4
2012-08-13libsyntax: Refactor item parsing so that items and view items are parsed in t...Patrick Walton-30/+113
2012-08-13Got the select macro working.Eric Holk-2/+10
2012-08-13rustc: Make functional record and struct update use ".." instead of "with".Patrick Walton-4/+19
2012-08-13Fix method mode parsing bug. Closes #3191.Michael Sullivan-1/+0
2012-08-11syntax: better formatting of closures in pretty printer and more verbose debu...Daniel Patterson-21/+72
2012-08-10report local ambiguity errors earlierEric Holk-6/+9
2012-08-08libsyntax: Parse common enum fieldsPatrick Walton-86/+115
2012-08-08syntax: Pretty print impls with new syntaxBrian Anderson-7/+8
2012-08-08syntax: Stop supporting old impl syntaxBrian Anderson-59/+12
2012-08-08Convert impls to new syntaxBrian Anderson-79/+60
2012-08-08rustc: Do some plumbing work in preparation for common fields in enumsPatrick Walton-79/+91
2012-08-08rustc: Do some plumbing work on nested enumsPatrick Walton-70/+98
2012-08-07improve borrowck error messages to explain regions betterNiko Matsakis-1/+1
2012-08-07rustc: Parse variant structs; add a trivial test casePatrick Walton-27/+98
2012-08-07rustc: Box struct_defsPatrick Walton-15/+15
2012-08-07Implement static typeclass methods. Closes #3132.Michael Sullivan-33/+75
2012-08-07libsyntax: Break struct definitions out of classes internally in a few more p...Patrick Walton-83/+94
2012-08-07libsyntax: Allow users of the visitor to visit struct defsPatrick Walton-13/+35
2012-08-07rustc: Split out struct bodies into a separate "struct_def" type in the ASTPatrick Walton-35/+50
2012-08-07Add missing commaBrian Anderson-1/+1
2012-08-07rustc: Add stub support for struct variants to the ASTPatrick Walton-84/+136
2012-08-07syntax: Rename expr_alt to expr_matchBrian Anderson-10/+10
2012-08-07syntax: Fix parsing of inherent traitsBrian Anderson-1/+2
2012-08-07syntax: Make match arm parsing more restrictive againBrian Anderson-40/+47
2012-08-07Generate try_send versions for all the messages. Fixes #3128Eric Holk-57/+98
2012-08-06rustc: Parse and stub (broken) typechecking for bounded function typesPatrick Walton-32/+53
2012-08-06Fix log_syntax of unexpanded code.Paul Stansifer-18/+44
2012-08-06Disallow multiple constructors or destructors in the same classTim Chevalier-5/+25
2012-08-06rustc: Implement pattern matching for structsPatrick Walton-63/+165
2012-08-06make `ref x` bindings produce region ptrs and fix various minor bugsNiko Matsakis-75/+98
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-483/+484
2012-08-06Handle interpolated paths in pattern parsing. Fixes #3007.Eric Holk-3/+12
2012-08-06rustc: Implement functional record update for structsPatrick Walton-11/+30
2012-08-05syntax: Stop parsing alts without arrowsBrian Anderson-6/+2
2012-08-05Switch alts to use arrowsBrian Anderson-1784/+1687
2012-08-03rustc: Merge fn& and fn in favor of fn&.Patrick Walton-18/+13
2012-08-03rustc: Parse and typecheck repeating vector expressions; e.g. [ 0, ..512 ]Patrick Walton-32/+90
2012-08-03libsyntax: Fix trailing whitespacePatrick Walton-1/+1
2012-08-03rustc: Parse, serialize, and deserialize trait inheritancePatrick Walton-6/+31
2012-08-03rustc: Add the notion of inherited visibilityPatrick Walton-51/+65
2012-08-03rustc: Remove all fixed-length strings from our codebasePatrick Walton-10/+10
2012-08-02Purge placement new; Make borrowck know about unary move.Niko Matsakis-30/+3
2012-08-02Revert "Remove "iface" from keyword table."Lindsey Kuper-1/+1
2012-08-02Remove "iface" from keyword table.Lindsey Kuper-1/+1
2012-08-02Shift writer_util to a derived impl attached to the writer traitGraydon Hoare-2/+2
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-10/+35
2012-08-02Remove modes from map API and replace with regions.Niko Matsakis-30/+41