about summary refs log tree commit diff
path: root/src/comp/syntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2012-02-14rustc: Parse crust functionsBrian Anderson-1/+4
2012-02-13Track purity/unsafety of iface and impl methodsMarijn Haverbeke-17/+16
2012-02-11make bind syntax unnecessary: just use _ for one of the argumentsNiko Matsakis-11/+20
2012-02-10Don't allow binding patterns to bind keywordsMarijn Haverbeke-5/+14
2012-02-10Remove a vestige of return-by-referenceMarijn Haverbeke-18/+5
2012-02-09Remove some pointless importsMarijn Haverbeke-2/+0
2012-02-09Increase precedence of as operatorMarijn Haverbeke-3/+3
2012-02-08A bit more WIP on classes, and some cleanup in resolveTim Chevalier-10/+9
2012-02-07Minor class-related tweaks to the ASTTim Chevalier-3/+5
2012-02-06Make keyword table in reference reflect reality more closelyMarijn Haverbeke-6/+6
2012-02-06Handle built-in typenames in the resolve pass, rather than in parserMarijn Haverbeke-53/+18
2012-02-06Removed sendfn from badwords and made the precedence of XOR between that of O...Ian D. Bollinger-2/+2
2012-02-06Allow non-semicolon-requiring expressions to be followed by .fieldMarijn Haverbeke-22/+22
2012-02-05Remove support for $(...) form of quasi-quotes, use #ast{...} instead.Kevin Atkinson-6/+0
2012-02-05infer modes rather than overwriting with expected tyNiko Matsakis-10/+15
2012-02-03Beginnings of front-end support for classesTim Chevalier-1/+105
2012-02-03Allow anti-quotes to also be ast::ty rather than just ast::expr.Kevin Atkinson-0/+7
2012-02-03Implement quasi-quoting of multiple syntatic categories.Kevin Atkinson-2/+2
2012-02-03Store info about file "substr".Kevin Atkinson-9/+11
2012-02-03Implement quasi-quotes in more macro form: #ast{...}.Kevin Atkinson-1/+13
2012-02-03Make macro arg optional in syntax, again untested.Kevin Atkinson-8/+14
2012-02-03Add support for recognizing macro body, completely untested.Kevin Atkinson-1/+18
2012-02-03Implement anti-quotes.Kevin Atkinson-2/+13
2012-02-03Add support for parsing quasi-quotes, doesn't do anything useful yet.Kevin Atkinson-0/+19
2012-02-01make boxes self-describing (fixes #1493)" (take 2)Niko Matsakis-0/+2
2012-02-01Revert "make boxes self-describing (fixes #1493)" until a newNiko Matsakis-2/+0
2012-02-01make boxes self-describing (fixes #1493)Niko Matsakis-0/+2
2012-02-01Remove support for native typesMarijn Haverbeke-15/+1
2012-01-31Change option::t to optionTim Chevalier-11/+11
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-14/+1
2012-01-30Change all ternary ops to if/then/elsePaul Woolcock-10/+34
2012-01-30Revert self typesMarijn Haverbeke-3/+2
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-4/+4
2012-01-25Keep source file around after parsing.Kevin Atkinson-9/+10
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-24rustc: Split diagnostics into "span diagnostics" and "diagnostics".Patrick Walton-10/+11
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-11/+23
2012-01-23Export all enum variants by default; new syntax for selectively exporting var...Tim Chevalier-11/+12