aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* rustc: First stab at a typecheckerPatrick Walton2010-11-191-1/+4
|
* rustc: Add a type annotation for localsPatrick Walton2010-11-121-1/+2
|
* rustc: Add an annotation to function and type items so that the typechecker ↵Patrick Walton2010-11-101-2/+2
| | | | can store types with them
* rustc: Implement function typesPatrick Walton2010-11-051-0/+1
|
* Move the option type to its own modulePatrick Walton2010-11-051-8/+7
|
* Revert "Move the option type to its own module"Patrick Walton2010-11-051-0/+1
|
* Move the option type to its own modulePatrick Walton2010-11-051-1/+0
|
* rustc: Use an extensible annotation field instead of putting option[@ty] ↵Patrick Walton2010-11-031-16/+22
| | | | everywhere
* Support while and do-while loops in rustc.Graydon Hoare2010-11-031-0/+2
|
* Implement check-exprs, un-xfail 5 rustc tests.Graydon Hoare2010-10-221-0/+1
|
* Teach trans to allocate, initialize and load from local variables.Graydon Hoare2010-10-191-1/+1
|
* Partial work on adding types to the ASTPatrick Walton2010-10-191-13/+13
|
* Store items and decls in vecs to preserve input order, index externally. ↵Graydon Hoare2010-10-181-8/+16
| | | | Implement block-local name lookup.
* More work on resolving names in rustc. Basic expr_name lookup working on ↵Graydon Hoare2010-10-181-23/+18
| | | | items and args.
* Roll back the expr->lval change. We're now LL(1) again.Patrick Walton2010-10-181-9/+4
|
* Encode and decode tag types in dwarf properly. Add list module to std. Shift ↵Graydon Hoare2010-10-151-3/+1
| | | | rustc to use std.util.option. Fix various dependent bugs. Closes #73.
* Finish the fold drivers in fold.rs.Graydon Hoare2010-10-141-1/+1
|
* rustc: Start work on lvalsPatrick Walton2010-10-141-3/+9
|
* rustc: Parse vector typesPatrick Walton2010-10-131-0/+1
|
* rustc: Add mutability to tuple literalsPatrick Walton2010-10-121-1/+1
|
* rustc: Add the tuple type to the ASTPatrick Walton2010-10-111-0/+1
|
* rustc: Parse letsPatrick Walton2010-10-111-1/+1
|
* rustc: Make functions output a type, not a slotPatrick Walton2010-10-081-1/+1
|
* Add the beginnings of an ast folder plus an empty module for resolve.Graydon Hoare2010-10-061-2/+3
|
* Make ast node box uses more uniform in rustc.Graydon Hoare2010-10-061-7/+7
|
* Add input coordinate tracking to all major rustc ast nodes.Graydon Hoare2010-10-051-20/+37
|
* Improve name nodes to ast, teach to parse qualified names, put out flaming ↵Graydon Hoare2010-10-041-1/+16
| | | | tinderbox.
* Teach rustc about phi nodes, block relationships. Translate if- and ↵Graydon Hoare2010-10-041-2/+7
| | | | block-expressions.
* More rustc expr-parsing logic.Graydon Hoare2010-09-281-16/+14
|
* Start building up the expression tower.Graydon Hoare2010-09-271-7/+42
|
* Translate a bunch of the material (lltrans, llasm, abi) from rustboot to ↵Graydon Hoare2010-09-231-0/+83
rustc, and move files around.