about summary refs log tree commit diff
path: root/src/comp/syntax/parse
AgeCommit message (Expand)AuthorLines
2012-02-01Remove support for native typesMarijn Haverbeke-15/+1
2012-01-31Change option::t to optionTim Chevalier-15/+15
2012-01-31Require alts to be exhaustiveTim Chevalier-12/+7
2012-01-30rustc: Allow attributes on methods. Closes #1709Brian Anderson-3/+6
2012-01-30Remove ternary operatorPaul Woolcock-20/+1
2012-01-30Change all ternary ops to if/then/elsePaul Woolcock-20/+44
2012-01-30Revert self typesMarijn Haverbeke-3/+2
2012-01-27Merge remote-tracking branch 'killerswan/fixing_strings_2'Brian Anderson-1/+1
2012-01-27Use the method name 'unary-' for overloading negationMarijn Haverbeke-1/+5
2012-01-26Use operator names for operator methodsMarijn Haverbeke-2/+11
2012-01-26Allow operator overloading of the indexing operatorMarijn Haverbeke-0/+1
2012-01-26First stab at operator overloadingMarijn Haverbeke-0/+4
2012-01-25rustc: Allow attributes on enum variants. Closes #1663Brian Anderson-1/+5
2012-01-25Correctly increment sess.byte_pos.Kevin Atkinson-6/+6
2012-01-25Keep source file around after parsing.Kevin Atkinson-19/+20
2012-01-25Implement implicit self type parameters for ifacesMarijn Haverbeke-2/+3
2012-01-25Rename tag to enum throughout the compilerMarijn Haverbeke-15/+15
2012-01-25Repair zero-variant tagsMarijn Haverbeke-51/+24
2012-01-25Replacing str::unsafe_from_bytes with str::from_bytes (part 4)Kevin Cantu-1/+1
2012-01-24rustc: Split diagnostics into "span diagnostics" and "diagnostics".Patrick Walton-16/+18
2012-01-24comp: Fix syntax error in parserBrian Anderson-1/+1
2012-01-23Added to bad_expr_word_table reserved wordsJoshua Clark-2/+3
2012-01-23s/block()/fn()/gNiko Matsakis-14/+8
2012-01-23Don't reset the chpos/byte_pos to 0 in new_parser_from_source_str.Kevin Atkinson-20/+29
2012-01-23Export all enum variants by default; new syntax for selectively exporting var...Tim Chevalier-11/+12
2012-01-20WIP on issue 1426 (exporting all tags)Tim Chevalier-4/+28
2012-01-19Additional ; to , changes, disable "tag" and ";" in parser. Close #1430. Clos...Graydon Hoare-1/+1
2012-01-19rustc: Stop parsing "tag"Patrick Walton-2/+2
2012-01-19rustc: ";" to "," in enumsPatrick Walton-64/+64
2012-01-19rustc: "tag" -> "enum"Patrick Walton-10/+10
2012-01-19Rename fn*() to fn() as originally planned.Niko Matsakis-7/+9
2012-01-19treat fn*() as fn&()Niko Matsakis-8/+2
2012-01-19Remove support for the '.' after a nullary tag in a patternTim Chevalier-4/+0
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-123/+123
2012-01-18Allow any alternative (not just a block) to follow a nullary tag patternTim Chevalier-3/+1
2012-01-18allow dotless nullary patterns inside or-patternsTim Chevalier-1/+2
2012-01-18Another minor parser fix for nullary-tag patternsTim Chevalier-1/+1
2012-01-18Allow nullary tag names to be qualifiedTim Chevalier-3/+2
2012-01-18rustc: Assert that the parser doesn't assign node id 0Brian Anderson-0/+2
2012-01-18rustc: Accept commas to separate tag variantsPatrick Walton-3/+12
2012-01-17Allow omission of the '.' after nullary tag patternsTim Chevalier-6/+23
2012-01-16Don't evaluate discriminator value constants when parsing.Kevin Atkinson-27/+2
2012-01-15rustc: Parse fn inner attributes. Closes #1506Brian Anderson-29/+96
2012-01-15rustc: Extract comman parts of view parsingBrian Anderson-7/+13
2012-01-13rustc: Rename the lexer's err message to fatal and make it failBrian Anderson-17/+12
2012-01-13rustc: Replace the lexer's error handling with diagnostic implBrian Anderson-8/+18
2012-01-13rustc: Replace parser's error handling with diagnostic implBrian Anderson-9/+10
2012-01-13rustc: Extract driver::diagnostic from syntax::codemapBrian Anderson-5/+7
2012-01-13rustc: Refactor codemap::emit_* functionsBrian Anderson-7/+6
2012-01-13distinguish "any closure" and "stack closure" (block)Niko Matsakis-10/+10