| Commit message (Expand) | Author | Age | Files | Lines |
| * | Parse crate directive tree in one pass, then evaluate it in a second. | Graydon Hoare | 2011-02-24 | 2 | -33/+96 |
| * | Add a type for crate directives, to support intermixing with exprs in crate f... | Graydon Hoare | 2011-02-23 | 1 | -0/+14 |
| * | Parse auth clauses, drop them on the floor. Nothing exists to use them yet an... | Graydon Hoare | 2011-02-23 | 1 | -0/+9 |
| * | Use the computed abi :-( | Rafael Ávila de Espíndola | 2011-02-23 | 1 | -1/+1 |
| * | Parse the abi in native modules. | Rafael Ávila de Espíndola | 2011-02-23 | 2 | -11/+39 |
| * | Teach rustc about reserved keywords | Brian Anderson | 2011-02-22 | 1 | -1/+16 |
| * | Rename std._io to std.io since 'io' is no longer a keyword | Brian Anderson | 2011-02-22 | 2 | -3/+3 |
| * | Make a tag for iterness / fnness, teach many places about it. | Graydon Hoare | 2011-02-18 | 2 | -42/+60 |
| * | More typechecking for native types and the needed plumbing in codegen. | Rafael Avila de Espindola | 2011-02-16 | 2 | -3/+4 |
| * | Add _mutable unop. | Graydon Hoare | 2011-02-15 | 2 | -0/+8 |
| * | Fix missing path in expr_ext. | Graydon Hoare | 2011-02-15 | 2 | -2/+3 |
| * | Add basic front-end support for 'for each' loops. | Graydon Hoare | 2011-02-14 | 2 | -1/+17 |
| * | Add basic front-end support for expr_put. | Graydon Hoare | 2011-02-14 | 2 | -0/+16 |
| * | Move all non-decl/non-expr stmts to exprs. | Graydon Hoare | 2011-02-14 | 2 | -63/+63 |
| * | Adjust commented-out diagnostic log statement in parser.rs. | Graydon Hoare | 2011-02-14 | 1 | -1/+2 |
| * | Add parse support for expr_ext. | Graydon Hoare | 2011-02-14 | 2 | -0/+12 |
| * | Expand expr_rec to take its optional trailing 'with' parameter. | Graydon Hoare | 2011-02-14 | 2 | -10/+33 |
| * | Support indexing pat_lit. | Graydon Hoare | 2011-02-10 | 1 | -0/+1 |
| * | Add pat_lit to ast, and support parsing it. | Graydon Hoare | 2011-02-10 | 2 | -22/+22 |
| * | Parse effects and layers in a couple contexts; drop on floor as we have nowhe... | Graydon Hoare | 2011-02-10 | 1 | -0/+10 |
| * | Cleanup for 'be' statement and comments about future typestate | Brian Anderson | 2011-02-10 | 2 | -1/+18 |
| * | Parse 'be' statement. Pass tailcall tests. No actual tailcalls yet. | Brian Anderson | 2011-02-10 | 2 | -0/+8 |
| * | Add native modules to resolve. With this hello world gets to typecheck. | Rafael Avila de Espindola | 2011-02-07 | 1 | -0/+2 |
| * | Add support for | Rafael Avila de Espindola | 2011-02-07 | 1 | -1/+12 |
| * | Parse function declarations. | Rafael Ávila de Espíndola | 2011-02-04 | 2 | -12/+37 |
| * | Factor the parsing of "type foo" into parse_type_decl. | Rafael Ávila de Espíndola | 2011-02-04 | 1 | -9/+11 |
| * | Add most of the plumbing for native items and add support for parsing native ... | Rafael Ávila de Espíndola | 2011-02-02 | 2 | -3/+51 |
| * | Add very minimal support for native modules. For now they must be empty. | Rafael Ávila de Espíndola | 2011-02-01 | 2 | -0/+25 |
| * | Implement 'else if' | Graydon Hoare | 2011-02-01 | 2 | -11/+33 |
| * | Add ty_type. | Graydon Hoare | 2011-02-01 | 1 | -0/+1 |
| * | Teach rustc to fail | Brian Anderson | 2011-01-28 | 2 | -0/+7 |
| * | Correctly handle "import foo = bar.zed;". | Rafael Ávila de Espíndola | 2011-01-28 | 2 | -12/+24 |
| * | First step for supporting "case (foo.bar(?zed))": Change the ast of | Rafael Ávila de Espíndola | 2011-01-27 | 2 | -3/+4 |
| * | Do better at parsing expr_paths with type arguments. | Graydon Hoare | 2011-01-24 | 1 | -19/+23 |
| * | Switch from booleans to symbolic tags in a few places. | Graydon Hoare | 2011-01-24 | 1 | -23/+28 |
| * | Teach parser to recognize ITER keyword as item-start. | Graydon Hoare | 2011-01-24 | 1 | -0/+1 |
| * | Teach AST, parser, folder about iter items. | Graydon Hoare | 2011-01-21 | 2 | -8/+25 |
| * | Adjust AST encoding, teach fold about linear for loops. | Graydon Hoare | 2011-01-20 | 2 | -12/+21 |
| * | typo | Rafael Ávila de Espíndola | 2011-01-20 | 1 | -1/+1 |
| * | Teach ast and parser about linear for expressions. | Graydon Hoare | 2011-01-20 | 2 | -28/+56 |
| * | One last refactoring of the import handling: | Rafael Ávila de Espíndola | 2011-01-18 | 2 | -3/+4 |
| * | Change single-ident expr_ident to greedy/fat multi-ident expr_path, to handle... | Graydon Hoare | 2011-01-13 | 2 | -38/+71 |
| * | Change mod_index_entry to point directly to items and view_items. | Rafael Ávila de Espíndola | 2011-01-12 | 2 | -49/+53 |
| * | Sketch support for reading multi-file crates in rustc. Add test, not yet work... | Graydon Hoare | 2011-01-10 | 1 | -32/+138 |
| * | Add sufficient import support to compile some simple single-crate programs. | Rafael Ávila de Espíndola | 2011-01-07 | 1 | -1/+0 |
| * | Add names from imports to the namespace. | Rafael Ávila de Espíndola | 2011-01-04 | 2 | -3/+7 |
| * | Add support for looking up a name introduced by a 'use'. | Rafael Ávila de Espíndola | 2011-01-04 | 2 | -11/+24 |
| * | Refactor the view_item code so that it is similar to the code used for | Rafael Ávila de Espíndola | 2011-01-04 | 2 | -30/+40 |
| * | Rename use_or_import to view_item. | Rafael Ávila de Espíndola | 2011-01-04 | 2 | -8/+8 |
| * | Split driver between parsing source files and crate files, by extension. Add ... | Graydon Hoare | 2011-01-03 | 1 | -1/+8 |