aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/parser.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* 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 ↵Graydon Hoare2010-11-191-6/+77
| | | | arith-0 and arith-2 tests.
* Isolate while-header bug to minimal testcase, fix in rustboot, remove ↵Graydon Hoare2010-11-191-13/+2
| | | | workaround in rustc.
* 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 ↵Patrick Walton2010-11-101-3/+3
| | | | can store types with them
* 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] ↵Patrick Walton2010-11-031-23/+23
| | | | everywhere
* 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
|
* Add a type slot to the ASTPatrick Walton2010-10-191-18/+23
|
* Store items and decls in vecs to preserve input order, index externally. ↵Graydon Hoare2010-10-181-33/+90
| | | | Implement block-local name lookup.
* More work on resolving names in rustc. Basic expr_name lookup working on ↵Graydon Hoare2010-10-181-17/+28
| | | | items and args.
* Roll back the expr->lval change. We're now LL(1) again.Patrick Walton2010-10-181-50/+3
|
* Encode and decode tag types in dwarf properly. Add list module to std. Shift ↵Graydon Hoare2010-10-151-3/+4
| | | | rustc to use std.util.option. Fix various dependent bugs. Closes #73.
* rustc: Parse field and vector indexing expressionsPatrick Walton2010-10-141-34/+53
|
* rustc: Start work on lvalsPatrick Walton2010-10-141-15/+37
|
* rustc: Parse vector typesPatrick Walton2010-10-131-0/+7
|
* rustc: Add mutability to tuple literalsPatrick Walton2010-10-121-5/+17
|
* rustc: Parse box typesPatrick Walton2010-10-121-0/+2
|
* rustc: Parse tuple typesPatrick Walton2010-10-121-0/+21
|
* Parse autosPatrick Walton2010-10-111-9/+22
|
* rustc: Parse letsPatrick Walton2010-10-111-0/+27
|
* rustc: Say "expected expression" instead of "expected literal" when we ↵Patrick Walton2010-10-111-8/+14
| | | | expect an expression
* rustc: Make functions output a type, not a slotPatrick Walton2010-10-081-4/+3
|
* Add the beginnings of an ast folder plus an empty module for resolve.Graydon Hoare2010-10-061-2/+2
|
* Make ast node box uses more uniform in rustc.Graydon Hoare2010-10-061-18/+18
|
* Add input coordinate tracking to all major rustc ast nodes.Graydon Hoare2010-10-051-54/+149
|
* Improve name nodes to ast, teach to parse qualified names, put out flaming ↵Graydon Hoare2010-10-041-2/+18
| | | | tinderbox.
* Teach rustc about phi nodes, block relationships. Translate if- and ↵Graydon Hoare2010-10-041-10/+50
| | | | block-expressions.
* Patchwork of attempted fixes to effect system and gc system; eventually give ↵Graydon Hoare2010-09-291-39/+39
| | | | up and disable it entirely in the runtime. Will need extensive reworking.
* Translate a modest selection of easy binops.Graydon Hoare2010-09-281-10/+10
|
* Translate literal int, char, bool and str types, as well as logging them.Graydon Hoare2010-09-281-0/+4
|
* More rustc expr-parsing logic.Graydon Hoare2010-09-281-6/+224
|
* Start building up the expression tower.Graydon Hoare2010-09-271-9/+46
|
* Translate a bunch of the material (lltrans, llasm, abi) from rustboot to ↵Graydon Hoare2010-09-231-0/+265
rustc, and move files around.