| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Switch machine-type lexemes to use suffixes. Remove support for foo(bar) as ↵ | Graydon Hoare | 2010-07-27 | 5 | -123/+68 |
| | | | | | a cast notation. Closes #129. | ||||
| * | Add pretty-printing for alt-tag statements. | Graydon Hoare | 2010-07-23 | 1 | -1/+32 |
| | | |||||
| * | Rename STMT_init_* to STMT_new_*; former name was confusing. | Graydon Hoare | 2010-07-23 | 2 | -24/+24 |
| | | |||||
| * | Re-classify some err / bug cases as unimpl. Ideally rustboot should never ↵ | Graydon Hoare | 2010-07-22 | 1 | -1/+1 |
| | | | | | produce a backtrace. | ||||
| * | Source FIXME annotations for issue #81 and a correction to STMT_bind fmt. | Roy Frostig | 2010-07-22 | 1 | -1/+1 |
| | | |||||
| * | Tidy up handling of unimplemented features. These are expected (if ↵ | Graydon Hoare | 2010-07-20 | 2 | -8/+13 |
| | | | | | undesirable) sorts of error, we should handle better than "backtrace and exit 2". | ||||
| * | Include the statements on the LHS of a binop when desugaring. Closes #117. | Patrick Walton | 2010-07-19 | 1 | -56/+57 |
| | | |||||
| * | Fix opeq.rs for LLVM by implementing simple augmented-assignment operators. | Jeffrey Yasskin | 2010-07-20 | 1 | -0/+1 |
| | | |||||
| * | Make the LLVM compiler crash when it hits a source construct it doesn't know | Jeffrey Yasskin | 2010-07-20 | 1 | -0/+2 |
| | | | | | what to do with, rather than silently omitting it from the output. | ||||
| * | Merge branch 'contrib' | Graydon Hoare | 2010-07-15 | 1 | -87/+88 |
| |\ | |||||
| | * | use,import,export parse fixes | Adam Bozanich | 2010-07-16 | 1 | -73/+87 |
| | | | | | | | | | | | * use,import,export must come before all other items. * disallow use,import in "native" declarations. | ||||
| | * | permit use before import. closes #48 | Adam Bozanich | 2010-07-16 | 1 | -36/+23 |
| | | | |||||
| * | | Make mutability no longer a type constructor | Patrick Walton | 2010-07-15 | 2 | -48/+77 |
| | | | |||||
| * | | Desugar the head stmts all the way out of STMT_for, rather than stashing ↵ | Graydon Hoare | 2010-07-13 | 2 | -9/+9 |
| | | | | | | | | | them in the node. That's only necessary for STMT_while. | ||||
| * | | Accept effect-qualified local item declarations. | Graydon Hoare | 2010-07-13 | 1 | -1/+1 |
| | | | |||||
| * | | Merge branch 'contrib' | Graydon Hoare | 2010-07-12 | 1 | -3/+3 |
| |\| | |||||
| | * | Fix formatting trivia in Ast.fmt_stmt_body. | Jason Orendorff | 2010-07-13 | 1 | -3/+3 |
| | | | |||||
| * | | Wrap long line. | Graydon Hoare | 2010-07-12 | 1 | -1/+2 |
| | | | |||||
| * | | Add a ty_children function to enumerate the children of any type | Patrick Walton | 2010-07-12 | 1 | -0/+26 |
| |/ | |||||
| * | Err kindly instead of asserting on duplicate mod declarations in crates. | Roy Frostig | 2010-07-08 | 1 | -1/+5 |
| | | |||||
| * | Fix typo in token.ml. | Matt Brubeck | 2010-07-09 | 1 | -1/+1 |
| | | |||||
| * | Issue 66: Multi-line comments | Matt Brubeck | 2010-07-08 | 1 | -1/+14 |
| | | |||||
| * | Merge branch 'exterior_and_mutable_types' of [email protected]:graydon/rust ↵ | Graydon Hoare | 2010-07-02 | 1 | -5/+9 |
| |\ | | | | | | | into exterior_and_mutable_types | ||||
| | * | Allow formatting individual decl_params | Patrick Walton | 2010-07-02 | 1 | -5/+9 |
| | | | |||||
| * | | Parse effect-qualified type definitions. | Graydon Hoare | 2010-07-02 | 3 | -22/+29 |
| |/ | |||||
| * | Catch ast pretty-printer up with init-tup syntax. | Graydon Hoare | 2010-07-01 | 1 | -1/+1 |
| | | |||||
| * | Add machine-dependent 'float' type. | Graydon Hoare | 2010-07-01 | 2 | -0/+3 |
| | | |||||
| * | Fix lexer's definition of numeric literals. | Graydon Hoare | 2010-07-01 | 1 | -4/+5 |
| | | |||||
| * | Rename 'exterior' to 'box' and 'interior' to 'local' (at least wrt. slots; ↵ | Graydon Hoare | 2010-06-30 | 4 | -16/+16 |
| | | | | | keep MEM_interior for describing interior-parts-of-allocations) | ||||
| * | Improve logging in type.ml, give it indentation and per-statement context. | Graydon Hoare | 2010-06-30 | 1 | -1/+3 |
| | | |||||
| * | Fix recently-broken lval formatter. | Graydon Hoare | 2010-06-30 | 1 | -0/+2 |
| | | |||||
| * | Add support for parsing COMP_deref lval components (*foo). | Graydon Hoare | 2010-06-30 | 1 | -0/+13 |
| | | |||||
| * | Add a COMP_deref to lvals for explicit-derefs, modify typechecker to ↵ | Graydon Hoare | 2010-06-30 | 1 | -14/+12 |
| | | | | | implicitly deref in only *some* contexts. | ||||
| * | Fix exterior formatter. | Graydon Hoare | 2010-06-30 | 1 | -1/+1 |
| | | |||||
| * | Initial stab at lowering mutable and exterior into the type system. | Graydon Hoare | 2010-06-29 | 4 | -115/+119 |
| | | |||||
| * | Some fixme-to-issue housekeeping. | Graydon Hoare | 2010-06-28 | 3 | -3/+2 |
| | | |||||
| * | Only translate or dwarf-emit items or stubs locally defined or used. Avoids ↵ | Graydon Hoare | 2010-06-27 | 1 | -7/+21 |
| | | | | | instantiating O(sizeof(standard-library)) worth of imports stubs on each 'use std'. Closes issue 13. | ||||
| * | Resolve and typecheck patterns in pattern alt redux. This time featuring ↵ | Roy Frostig | 2010-06-25 | 2 | -15/+23 |
| | | | | | way more correctness. | ||||
| * | Rearrange pexp-custom stuff a bit. | Graydon Hoare | 2010-06-25 | 1 | -22/+16 |
| | | |||||
| * | Add fmt module, move out some common format helpers, add ↵ | Graydon Hoare | 2010-06-24 | 2 | -26/+2 |
| | | | | | instruction-selection tracing and make selection use queues rather than list refs. | ||||
| * | Resolve and typecheck patterns in pattern alt. | Roy Frostig | 2010-06-24 | 2 | -11/+16 |
| | | |||||
| * | Populate tree. | Graydon Hoare | 2010-06-23 | 7 | -0/+5659 |