aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/parser.rs
Commit message (Expand)AuthorAgeFilesLines
* rustc: Add a definition ID to tag patternsPatrick Walton2010-12-121-2/+2
* rustc: Resolve pattern bindingsPatrick Walton2010-12-101-1/+20
* rustc: Add def ids to pattern bindingsPatrick Walton2010-12-101-1/+1
* Fix another bug in expr_index parse rule.Graydon Hoare2010-12-091-1/+1
* Fix bug in parse rule for expr_index.Graydon Hoare2010-12-091-0/+5
* Add 'unexpected' fn to parser.Graydon Hoare2010-12-091-0/+6
* First sketch of support for const items, not including most of trans.Graydon Hoare2010-12-091-0/+22
* Add missing case to parse_ty, un-XFAIL cast.rs.Graydon Hoare2010-12-081-0/+1
* Implement binop= forms. Un-XFAIL bitwise.rs.Graydon Hoare2010-12-081-0/+22
* rustc: Add def ids to variant arguments so we can turn them into function arg...Patrick Walton2010-12-031-9/+9
* Parse layer and effect annotations.Graydon Hoare2010-12-031-3/+47
* Add code to fail on non-exhaustive alt matching. Fix all cases this picked up...Graydon Hoare2010-12-011-1/+6
* rustc: Annotate variants with their types. This may be useful for trans!Patrick Walton2010-12-011-1/+2
* rustc: Resolve tag variant namesPatrick Walton2010-12-011-14/+37
* Tidy up structural types for rec, tup AST and typeck nodes.Graydon Hoare2010-11-301-31/+30
* rustc: Add def ids to variantsPatrick Walton2010-11-301-1/+2
* rustc: Implement the block syntax discussed on the mailing listPatrick Walton2010-11-291-18/+99
* Add ty_rec and parse it.Graydon Hoare2010-11-291-0/+17
* Change mutability into a type constructor.Graydon Hoare2010-11-291-18/+4
* Change from bool to tag ast.mutability.Graydon Hoare2010-11-291-12/+18
* Add ast.ty_mutable.Graydon Hoare2010-11-291-1/+13
* rustc: Assign definition IDs to type paramsPatrick Walton2010-11-241-1/+6
* rustc: Parse type-parametric typedefsPatrick Walton2010-11-241-2/+4
* rustc: Parse type-parametric tagsPatrick Walton2010-11-241-8/+13
* rustc: Parse type-parametric functionsPatrick Walton2010-11-241-2/+10
* rustc: Don't require a semicolon after an "alt" statementPatrick Walton2010-11-241-0/+6
* rustc: Add patterns to foldPatrick Walton2010-11-241-4/+10
* rustc: Parse simple patternsPatrick Walton2010-11-241-0/+77
* rustc: Parse tag items. Currently segfaults in copy glue.Patrick Walton2010-11-241-0/+49
* Support mach types in rustc, enable 5 more tests.Graydon Hoare2010-11-221-0/+4
* Accumulate type paths as we parse, rather than throwing them away.Graydon Hoare2010-11-221-0/+1
* rustc: "expectied" -> "expected" in parser.rs; also say what was foundPatrick Walton2010-11-221-1/+3
* Parse type items, nil types, named types. Fix some parser bugs. Enable arith-...Graydon Hoare2010-11-191-6/+77
* Isolate while-header bug to minimal testcase, fix in rustboot, remove workaro...Graydon Hoare2010-11-191-13/+2
* Work around Yet Another Typestate Lifecycle Bug in rustboot.Graydon Hoare2010-11-191-2/+13
* rustc: Add a type annotation for localsPatrick Walton2010-11-121-2/+4
* rustc: Add an annotation to function and type items so that the typechecker c...Patrick Walton2010-11-101-3/+3
* rustc: Implement function typesPatrick Walton2010-11-051-0/+43
* Move the option type to its own modulePatrick Walton2010-11-051-7/+7
* Revert "Move the option type to its own module"Patrick Walton2010-11-051-3/+3
* Move the option type to its own modulePatrick Walton2010-11-051-3/+3
* Fix buggy while and do-while translation in rustc. Add test.Graydon Hoare2010-11-041-0/+1
* rustc: Use an extensible annotation field instead of putting option[@ty] ever...Patrick Walton2010-11-031-23/+23
* Support while and do-while loops in rustc.Graydon Hoare2010-11-031-0/+43
* First pass on splitting stratum and opacity off of effects. WIP.Graydon Hoare2010-11-021-47/+47
* Extremely broken hacked-up incorrect attempt at 'ret'.Graydon Hoare2010-10-221-0/+16
* Implement check-exprs, un-xfail 5 rustc tests.Graydon Hoare2010-10-221-0/+16
* Teach rustc to parse call exprs.Graydon Hoare2010-10-211-0/+13
* Parse and translate assignments.Graydon Hoare2010-10-191-1/+15
* Teach trans to allocate, initialize and load from local variables.Graydon Hoare2010-10-191-2/+2