aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
Commit message (Expand)AuthorAgeFilesLines
* Change mod_index_entry to point directly to items and view_items.Rafael Ávila de Espíndola2011-01-121-3/+45
* Add sufficient import support to compile some simple single-crate programs.Rafael Ávila de Espíndola2011-01-071-1/+0
* Add names from imports to the namespace.Rafael Ávila de Espíndola2011-01-041-1/+2
* Add support for looking up a name introduced by a 'use'.Rafael Ávila de Espíndola2011-01-041-4/+8
* Refactor the view_item code so that it is similar to the code used forRafael Ávila de Espíndola2011-01-041-11/+6
* Rename use_or_import to view_item.Rafael Ávila de Espíndola2011-01-041-3/+3
* Add def id to ast for obj fields.Graydon Hoare2010-12-301-0/+1
* Record the ast of uses and imports.Rafael Ávila de Espíndola2010-12-301-0/+14
* rustc: Move type logic out of typeck so trans doesn't look like it's calling ...Patrick Walton2010-12-211-3/+2
* rustc: Add bind expressions to the ASTPatrick Walton2010-12-201-0/+1
* Sketch trans_vtbl.Graydon Hoare2010-12-161-2/+2
* Add ty_obj to ast and parser.Graydon Hoare2010-12-141-0/+3
* Add obj items to AST and parser.Graydon Hoare2010-12-141-0/+11
* rustc: Add a definition ID to tag patternsPatrick Walton2010-12-121-1/+3
* rustc: Resolve pattern bindingsPatrick Walton2010-12-101-1/+2
* rustc: Add def ids to pattern bindingsPatrick Walton2010-12-101-1/+1
* First sketch of support for const items, not including most of trans.Graydon Hoare2010-12-091-0/+1
* Implement binop= forms. Un-XFAIL bitwise.rs.Graydon Hoare2010-12-081-0/+1
* rustc: Add def ids to variant arguments so we can turn them into function arg...Patrick Walton2010-12-031-1/+2
* Parse layer and effect annotations.Graydon Hoare2010-12-031-7/+22
* rustc: Annotate variants with their types. This may be useful for trans!Patrick Walton2010-12-011-1/+1
* rustc: Resolve tag variant namesPatrick Walton2010-12-011-2/+7
* Tidy up structural types for rec, tup AST and typeck nodes.Graydon Hoare2010-11-301-3/+7
* rustc: Add def ids to variantsPatrick Walton2010-11-301-1/+2
* rustc: Implement the block syntax discussed on the mailing listPatrick Walton2010-11-291-0/+1
* Add ty_rec and parse it.Graydon Hoare2010-11-291-0/+1
* Change mutability into a type constructor.Graydon Hoare2010-11-291-1/+1
* Change from bool to tag ast.mutability.Graydon Hoare2010-11-291-2/+7
* Add ast.ty_mutable.Graydon Hoare2010-11-291-0/+1
* rustc: Assign definition IDs to type paramsPatrick Walton2010-11-241-1/+2
* rustc: Parse type-parametric typedefsPatrick Walton2010-11-241-1/+1
* rustc: Parse type-parametric tagsPatrick Walton2010-11-241-1/+1
* rustc: Parse type-parametric functionsPatrick Walton2010-11-241-1/+2
* rustc: Add patterns to foldPatrick Walton2010-11-241-5/+5
* rustc: Parse simple patternsPatrick Walton2010-11-241-0/+10
* rustc: Parse tag items. Currently segfaults in copy glue.Patrick Walton2010-11-241-0/+3
* Support mach types in rustc, enable 5 more tests.Graydon Hoare2010-11-221-0/+2
* 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 c...Patrick Walton2010-11-101-2/+2
* 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] ever...Patrick Walton2010-11-031-16/+22
* 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. Impl...Graydon Hoare2010-10-181-8/+16