| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-03-25 | Another go at changing compile-command, this time using RBUILD env var. | Graydon Hoare | -9/+9 | |
| 2011-03-25 | Revert "Bulk-edit compile commands in emacs chatter to point to assumed ↵ | Graydon Hoare | -9/+9 | |
| build/ dir off src root." This reverts commit 846f2e2ba994268725f38c36fa12f1a09f21615c. | ||||
| 2011-03-25 | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir ↵ | Graydon Hoare | -9/+9 | |
| off src root. | ||||
| 2011-03-24 | Improve error message when the lexer sees a bad character | Tim Chevalier | -1/+2 | |
| 2011-03-18 | rustboot: Parse, and ignore, "mutable?" | Patrick Walton | -2/+14 | |
| 2011-02-09 | Add FreeBSD_x86_elf target to rustboot | Rob Arnold | -0/+1 | |
| 2010-12-13 | Syntax tweak: move 'mutable' from pseudo-ty-param on vec ctor to ↵ | Graydon Hoare | -10/+20 | |
| low-precedence prefix inside paren. | ||||
| 2010-12-03 | Change 'stratum' to the friendlier term 'layer'. | Graydon Hoare | -50/+50 | |
| 2010-11-13 | Change PVAL_num to PVAL_int and remove non-int literal forms. | Graydon Hoare | -16/+14 | |
| 2010-11-13 | Remove dead code in cexp. | Graydon Hoare | -1/+0 | |
| 2010-11-02 | Shift obj, type, param decls to have strata rather than effects. | Graydon Hoare | -33/+46 | |
| 2010-11-02 | First pass on splitting stratum and opacity off of effects. WIP. | Graydon Hoare | -46/+121 | |
| 2010-10-21 | rustboot: Don't use ridiculous type names when describing simple types like ↵ | Patrick Walton | -0/+11 | |
| int and uint | ||||
| 2010-10-11 | Bind labels explicitly in fe/cexp.ml. Should fix issue #169. | Patrick Walton | -2/+2 | |
| 2010-10-01 | Sketch out #fmt syntax extension in rustboot. | Graydon Hoare | -42/+407 | |
| 2010-09-30 | Drop slots on block exits even when blocks have no statements. Part way to ↵ | Graydon Hoare | -0/+1 | |
| fixing bind leakage in rustc. | ||||
| 2010-09-30 | implemented break for while-loop case | Or Brostovski | -1/+20 | |
| ast.ml - added break and cont statements item.ml - added break and cont statements lexer.mll - added break and cont statements token.ml - added break and cont statements trans.ml - implemented the break statement for the while-loop case - replaced hash table accesses with get_stmt_depth where needed type.ml = added break and cont statements typestate.ml - implemented the break statement for the while-loop case - added shorthand filter_live_block_slots walk.ml - added break and cont statements while-with-break.rs - code for testing while loops | ||||
| 2010-09-30 | Closed issue 154 - prevents compiler from compiliing a line to zero statements | Or Brostovski | -1/+10 | |
| 2010-09-21 | Report an error instead of asserting when an item name is already in use | Patrick Walton | -3/+7 | |
| 2010-09-21 | Tighten pattern parsing on 0-ary constructors. | Graydon Hoare | -1/+5 | |
| 2010-09-20 | Bind pattern slots with ?, drop parens from 0-ary tag constructors, ↵ | Graydon Hoare | -13/+30 | |
| translate 0-ary constructors as constants. Rustc loses ~300kb. | ||||
| 2010-09-20 | Wrap long lines. | Graydon Hoare | -2/+4 | |
| 2010-09-20 | Use name_base in plval base. | Graydon Hoare | -18/+8 | |
| 2010-09-20 | Move id counters into sess in preparation for moving desugaring to middle-end. | Graydon Hoare | -48/+19 | |
| 2010-09-16 | Add a pexp-rebuild phase to the type resolution pass in resolve.ml. | Graydon Hoare | -0/+2 | |
| 2010-09-16 | Add beginnings of a fuzzer to rustboot. | Graydon Hoare | -0/+166 | |
| 2010-09-15 | Minor improvements to pretty-printer. | Graydon Hoare | -5/+16 | |
| 2010-09-15 | Add Ast.ATOM_pexp and -pexp mode wherein pexps live beyond parsing, into ↵ | Graydon Hoare | -10/+37 | |
| later stages. Fixes to pexp pretty printer. | ||||
| 2010-09-15 | Add pretty-printing for pexps. | Graydon Hoare | -0/+145 | |
| 2010-09-15 | Add some form-judgements on plvals and pexps. | Graydon Hoare | -10/+86 | |
| 2010-09-14 | Commence moving pexp into ast, for eventual merger with expr. | Graydon Hoare | -154/+158 | |
| 2010-09-14 | Teach front-end about simple, first-cut version of const items. | Graydon Hoare | -0/+34 | |
| 2010-09-09 | Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly ↵ | Graydon Hoare | -229/+145 | |
| work, possibly a little bumpy. Changes a lot. | ||||
| 2010-09-08 | First lame stab at solving the diamond import problem | Patrick Walton | -5/+22 | |
| 2010-09-07 | Initial support for a global crate metadata cache | Patrick Walton | -5/+3 | |
| 2010-08-24 | Make error reporting slightly more regular. | Graydon Hoare | -2/+3 | |
| 2010-08-23 | Merge remote branch 'tohava/master' | Graydon Hoare | -69/+116 | |
| Conflicts: src/boot/fe/ast.ml | ||||
| 2010-08-20 | Warn when the value of "spawn" is unused, as it's useless | Patrick Walton | -1/+5 | |
| 2010-08-21 | Modified parser to handle alt type andadded a few tests | Or Brostovski | -65/+116 | |
| ast.ml - modified arm types for easier polymorphism - fixed a bug in fmt_type_arm dead.ml - modified arm types for easier polymorphism common.ml - added 'either' - added some useful auxiliary functions item.ml - modified arm code to be more polymorphic and handle both alt-tag and alt-type, also fixed the problematic case in bad-alt.rs Makefile - added XFAIL for new alt-type test bad-alt.rs - added test for invalid alt syntax alt-type-simple.rs - added simple test for alt type | ||||
| 2010-08-17 | Add support for a reserved-words list and reserve the various ↵ | Graydon Hoare | -15/+72 | |
| not-supported-but-plausible IEEE datatypes. | ||||
| 2010-08-16 | Absent any deep overhauls to syntax or constant-handling, hack in the ↵ | Graydon Hoare | -19/+43 | |
| ability to project a cexp var binding to a token in the parser. Use it in comp/rustc.rc and comp/lib/llvm.rs. | ||||
| 2010-08-12 | Kill old parser support for type-parametric modules. We don't support those. | Graydon Hoare | -2/+2 | |
| 2010-08-10 | Merge commit 'tohava/master' | Graydon Hoare | -20/+56 | |
| Conflicts: src/boot/fe/ast.ml | ||||
| 2010-08-09 | Add names to tasks and domains. These can either be an explicit literal string | Jeffrey Yasskin | -7/+27 | |
| after the "spawn" keyword, or implicitly the call expression used to start the spawn. | ||||
| 2010-08-07 | Merge branch 'master' of git://github.com/graydon/rust | Or Brostovski | -26/+29 | |
| Conflicts: src/boot/fe/ast.ml | ||||
| 2010-08-07 | Added AST pretty printing for communication alt statement, closes issue 19. | Or Brostovski | -4/+38 | |
| 2010-08-06 | Added forgotten handling for alt_type_else, and also for stmt_note | Or Brostovski | -10/+26 | |
| 2010-08-06 | Added AST pretty printing for slice expression | Or Brostovski | -1/+28 | |
| 2010-08-06 | Added AST logging, and modified AST for consistent handling of alt stmts. | Or Brostovski | -18/+57 | |
| - Modified the arm types, instead of a single arm type, there are now 2 (soon to be 3) arm types, one for each type of alt statement - Added AST logging for constrained type (see fmt_constrained) - Added AST logging for STMT_alt_type - Created a generic fmt_arm for use with all alt statements | ||||
| 2010-08-06 | Accept uint literals as literal patterns. | Roy Frostig | -1/+4 | |
