| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Started adding support for floating-point type, floating-point literals, and ↵ | Tim Chevalier | 2011-03-21 | 1 | -0/+3 |
| | | | | | logging of floats. Other operations on float probably don't work yet. | ||||
| * | Modify native_item_fn to handle trailing linkage names that differ from the ↵ | Graydon Hoare | 2011-03-20 | 1 | -1/+5 |
| | | | | | item name (used in win32 build of std.dll) | ||||
| * | rustc: Implement "mutable?". Add a test case and XFAIL it in rustboot for now. | Patrick Walton | 2011-03-18 | 1 | -2/+4 |
| | | |||||
| * | rustc: Switch mutability from being a type constructor to a field annotation | Patrick Walton | 2011-03-17 | 1 | -25/+30 |
| | | |||||
| * | Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. ↵ | Graydon Hoare | 2011-03-16 | 2 | -7/+9 |
| | | | | | Tweak std lib vec fns in process. | ||||
| * | rustc: Add an annotation for the crate definition to view_item_use | Patrick Walton | 2011-03-15 | 1 | -1/+1 |
| | | |||||
| * | Merge remote branch 'brson/recursive-elseif' | Graydon Hoare | 2011-03-14 | 1 | -18/+10 |
| |\ | |||||
| | * | Merge branch 'master' into recursive-elseif | Brian Anderson | 2011-03-13 | 2 | -34/+84 |
| | |\ | | | | | | | | | | | | | | | | Conflicts: src/comp/middle/typeck.rs | ||||
| | * | | Merge branch 'master' into recursive-elseif | Brian Anderson | 2011-03-07 | 1 | -18/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Makefile src/comp/front/ast.rs src/comp/front/parser.rs src/comp/middle/fold.rs src/comp/middle/trans.rs | ||||
| * | | | Make pretty-printer print 'with' clause in rec literals | Marijn Haverbeke | 2011-03-14 | 1 | -1/+11 |
| | |/ |/| | |||||
| * | | Add ty_obj case to pretty printer | Marijn Haverbeke | 2011-03-09 | 1 | -16/+37 |
| | | | |||||
| * | | Have the pretty-printer take a writer stream as argument | Marijn Haverbeke | 2011-03-09 | 2 | -17/+36 |
| | | | | | | | | | | | It now uses a string writer to also fill in for middle.ty.ast_ty_to_str | ||||
| * | | Add partial pretty-printing for syntax extensions | Brian Anderson | 2011-03-07 | 1 | -1/+10 |
| | | | |||||
| * | | Add missing alt arm to expr_if pretty-printer | Brian Anderson | 2011-03-07 | 1 | -0/+1 |
| |/ | |||||
| * | Add a pretty-printer | Marijn Haverbeke | 2011-03-07 | 2 | -0/+923 |
| Adds a -pp option to the compiler which will cause it to simply pretty-print the given file. | |||||