summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2012-08-15pipes: Rename the pipec-generated buffer to __BufferBrian Anderson-2/+2
2012-08-15Convert more core types to camel caseBrian Anderson-51/+51
2012-08-15Add trace_macros!Eric Holk-7/+51
2012-08-14Make autoserialize not generate alt checksTim Chevalier-2/+11
2012-08-14Convert more core types to camel caseBrian Anderson-12/+12
2012-08-14Make most forms of explicit self work. By-value not implemented. Work on #2585.Michael Sullivan-24/+2
2012-08-14libsyntax: Parse "extern mod foo;"Patrick Walton-37/+100
2012-08-14Merge pull request #3194 from dbp/prettyBrian Anderson-2/+15
2012-08-14Silence unused-variable warning.Graydon Hoare-1/+1
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-14syntax: fixing pretty printing of brackets in match armsDaniel Patterson-2/+15
2012-08-14More attempts at fixing .. breakage.Graydon Hoare-1/+0
2012-08-13libsyntax: Implement [int*3] syntax for fixed length vector typesPatrick Walton-1/+29
2012-08-13core: Camel case some lesser-used modulesBrian Anderson-3/+3
2012-08-13Stop parsing old operator overloading syntaxBrian Anderson-38/+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-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