about summary refs log tree commit diff
path: root/src/comp/front/ast.rs
AgeCommit message (Expand)AuthorLines
2010-12-14Add obj items to AST and parser.Graydon Hoare-0/+11
2010-12-12rustc: Add a definition ID to tag patternsPatrick Walton-1/+3
2010-12-10rustc: Resolve pattern bindingsPatrick Walton-1/+2
2010-12-10rustc: Add def ids to pattern bindingsPatrick Walton-1/+1
2010-12-09First sketch of support for const items, not including most of trans.Graydon Hoare-0/+1
2010-12-08Implement binop= forms. Un-XFAIL bitwise.rs.Graydon Hoare-0/+1
2010-12-03rustc: Add def ids to variant arguments so we can turn them into function arg...Patrick Walton-1/+2
2010-12-03Parse layer and effect annotations.Graydon Hoare-7/+22
2010-12-01rustc: Annotate variants with their types. This may be useful for trans!Patrick Walton-1/+1
2010-12-01rustc: Resolve tag variant namesPatrick Walton-2/+7
2010-11-30Tidy up structural types for rec, tup AST and typeck nodes.Graydon Hoare-3/+7
2010-11-30rustc: Add def ids to variantsPatrick Walton-1/+2
2010-11-29rustc: Implement the block syntax discussed on the mailing listPatrick Walton-0/+1
2010-11-29Add ty_rec and parse it.Graydon Hoare-0/+1
2010-11-29Change mutability into a type constructor.Graydon Hoare-1/+1
2010-11-29Change from bool to tag ast.mutability.Graydon Hoare-2/+7
2010-11-29Add ast.ty_mutable.Graydon Hoare-0/+1
2010-11-24rustc: Assign definition IDs to type paramsPatrick Walton-1/+2
2010-11-24rustc: Parse type-parametric typedefsPatrick Walton-1/+1
2010-11-24rustc: Parse type-parametric tagsPatrick Walton-1/+1
2010-11-24rustc: Parse type-parametric functionsPatrick Walton-1/+2
2010-11-24rustc: Add patterns to foldPatrick Walton-5/+5
2010-11-24rustc: Parse simple patternsPatrick Walton-0/+10
2010-11-24rustc: Parse tag items. Currently segfaults in copy glue.Patrick Walton-0/+3
2010-11-22Support mach types in rustc, enable 5 more tests.Graydon Hoare-0/+2
2010-11-19rustc: First stab at a typecheckerPatrick Walton-1/+4
2010-11-12rustc: Add a type annotation for localsPatrick Walton-1/+2
2010-11-10rustc: Add an annotation to function and type items so that the typechecker c...Patrick Walton-2/+2
2010-11-05rustc: Implement function typesPatrick Walton-0/+1
2010-11-05Move the option type to its own modulePatrick Walton-8/+7
2010-11-05Revert "Move the option type to its own module"Patrick Walton-0/+1
2010-11-05Move the option type to its own modulePatrick Walton-1/+0
2010-11-03rustc: Use an extensible annotation field instead of putting option[@ty] ever...Patrick Walton-16/+22
2010-11-03Support while and do-while loops in rustc.Graydon Hoare-0/+2
2010-10-22Implement check-exprs, un-xfail 5 rustc tests.Graydon Hoare-0/+1
2010-10-19Teach trans to allocate, initialize and load from local variables.Graydon Hoare-1/+1
2010-10-19Partial work on adding types to the ASTPatrick Walton-13/+13
2010-10-18Store items and decls in vecs to preserve input order, index externally. Impl...Graydon Hoare-8/+16
2010-10-18More work on resolving names in rustc. Basic expr_name lookup working on item...Graydon Hoare-23/+18
2010-10-18Roll back the expr->lval change. We're now LL(1) again.Patrick Walton-9/+4
2010-10-15Encode and decode tag types in dwarf properly. Add list module to std. Shift ...Graydon Hoare-3/+1
2010-10-14Finish the fold drivers in fold.rs.Graydon Hoare-1/+1
2010-10-14rustc: Start work on lvalsPatrick Walton-3/+9
2010-10-13rustc: Parse vector typesPatrick Walton-0/+1
2010-10-12rustc: Add mutability to tuple literalsPatrick Walton-1/+1
2010-10-11rustc: Add the tuple type to the ASTPatrick Walton-0/+1
2010-10-11rustc: Parse letsPatrick Walton-1/+1
2010-10-08rustc: Make functions output a type, not a slotPatrick Walton-1/+1
2010-10-06Add the beginnings of an ast folder plus an empty module for resolve.Graydon Hoare-2/+3
2010-10-06Make ast node box uses more uniform in rustc.Graydon Hoare-7/+7