| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-03-15 | rustc: Add a stub crate reader module for "use" directives | Patrick Walton | -0/+32 | |
| 2011-03-14 | Merge remote branch 'brson/recursive-elseif' | Graydon Hoare | -50/+35 | |
| 2011-03-14 | Reorganize evaluation of expr_send/recv to put them closer to expr_assign, ↵ | Brian Anderson | -2/+2 | |
| to which they are similar | ||||
| 2011-03-14 | Fix typo in expr_recv parsing | Brian Anderson | -1/+1 | |
| 2011-03-14 | Add folding and type checking for ports and chans | Brian Anderson | -2/+2 | |
| 2011-03-14 | Parse receive expressions | Brian Anderson | -0/+7 | |
| 2011-03-14 | Parse port and chan types, constructors, send statements | Brian Anderson | -0/+44 | |
| 2011-03-14 | Extend stream functionality | Marijn Haverbeke | -7/+7 | |
| Writer and reader streams now come with methods to write and read little-endian numbers. Whether that is the right place for such methods is debatable, but for now, that's where they live. | ||||
| 2011-03-14 | Add basic file-system functionality | Marijn Haverbeke | -3/+3 | |
| std.fs.list_dir will list the files in a directory, std.fs.file_is_dir will, given a pathname, determine whether it is a directory or not. | ||||
| 2011-03-13 | Merge branch 'master' into recursive-elseif | Brian Anderson | -134/+71 | |
| Conflicts: src/comp/middle/typeck.rs | ||||
| 2011-03-11 | Preserve crate directives in the parsed crate. | Graydon Hoare | -7/+7 | |
| 2011-03-11 | reindex the block index. | Rafael Ávila de Espíndola | -35/+39 | |
| 2011-03-11 | Add support for indexing tags in blocks. | Rafael Ávila de Espíndola | -11/+21 | |
| 2011-03-10 | Handle resolving to native modules. | Rafael Ávila de Espíndola | -0/+1 | |
| 2011-03-10 | rustc: Build up a list of upvars inside foreach bodies | Patrick Walton | -0/+1 | |
| 2011-03-10 | Update the current id when we create sub parsers. | Rafael Ávila de Espíndola | -5/+13 | |
| 2011-03-10 | Fix eval typo (caught by Martin Hock). | Graydon Hoare | -1/+1 | |
| 2011-03-08 | rustc: Add a slot for explicit type parameter instantations to the ↵ | Patrick Walton | -1/+1 | |
| typechecker's AST annotation | ||||
| 2011-03-07 | Remove old pretty-printer from rustc | Brian Anderson | -87/+0 | |
| 2011-03-07 | Merge branch 'master' into recursive-elseif | Brian Anderson | -333/+1998 | |
| Conflicts: src/Makefile src/comp/front/ast.rs src/comp/front/parser.rs src/comp/middle/fold.rs src/comp/middle/trans.rs | ||||
| 2011-03-07 | Parse opacity (and drop on the floor), so std.rc parses now. | Graydon Hoare | -0/+21 | |
| 2011-03-07 | Add a pretty-printer | Marijn Haverbeke | -0/+39 | |
| Adds a -pp option to the compiler which will cause it to simply pretty-print the given file. | ||||
| 2011-03-07 | Permit view items in native modules. | Graydon Hoare | -5/+42 | |
| 2011-03-07 | Stage the last compile fix to put out fire. Thanks git. | Graydon Hoare | -0/+1 | |
| 2011-03-07 | Complain on unexpected native symbol, rather than failing with ↵ | Graydon Hoare | -0/+3 | |
| none-exhaustive match. | ||||
| 2011-03-07 | use a precedence table for operator parsing | Marijn Haverbeke | -131/+65 | |
| 2011-03-06 | Remove typestate workarounds | Brian Anderson | -25/+10 | |
| 2011-03-05 | Make ret and fail stmts have 0 out-edges, Closes #250. | Graydon Hoare | -4/+1 | |
| 2011-03-04 | Parse (and generally ignore) constraints and constrained types. | Graydon Hoare | -1/+76 | |
| 2011-03-04 | Parse meta directives in crates. | Graydon Hoare | -15/+22 | |
| 2011-03-02 | Remove some erroneous FIXMEs from #fmt parser | Brian Anderson | -2/+0 | |
| 2011-03-02 | Comment-out some logging chatter in extfmt. | Graydon Hoare | -6/+6 | |
| 2011-03-02 | Parse, add to AST, and otherwise ignore 'export' view items. Need to add ↵ | Graydon Hoare | -11/+34 | |
| support to resolve. | ||||
| 2011-03-02 | Finish #fmt string parsing. Completely untested. | Brian Anderson | -7/+89 | |
| 2011-03-02 | Add debug logging for #fmt conv. Implement peek_num fn | Brian Anderson | -21/+123 | |
| 2011-03-02 | Whitespace cleanup | Brian Anderson | -6/+6 | |
| 2011-03-02 | Remove unused is_ext_expr | Brian Anderson | -11/+0 | |
| 2011-03-02 | Make the expanded expression in expr_ext not optional | Brian Anderson | -2/+2 | |
| 2011-03-02 | Add pretty printing for expr_call, expr_path, and more literals | Brian Anderson | -3/+37 | |
| 2011-03-02 | Remove debug logging from extfmt | Brian Anderson | -13/+0 | |
| 2011-03-02 | Implement #fmt conversion for int and uint | Brian Anderson | -8/+107 | |
| 2011-03-02 | Start generating AST nodes for #fmt | Brian Anderson | -8/+34 | |
| 2011-03-02 | Begin an AST pretty-printer | Brian Anderson | -0/+51 | |
| 2011-03-02 | Rewrite expand_syntax_ext to avoid a mysterious memory leak | Brian Anderson | -21/+18 | |
| 2011-03-02 | Parse parameter types for fmt extension | Brian Anderson | -28/+120 | |
| 2011-03-02 | Begin work on #fmt parsing | Brian Anderson | -3/+98 | |
| 2011-03-02 | Begin implementing #fmt in rustc | Brian Anderson | -2/+130 | |
| 2011-03-01 | Parse (and ignore) dtors on objs. | Graydon Hoare | -10/+23 | |
| 2011-03-01 | Implement the gross rustboot hack for contextual parser access to the ↵ | Graydon Hoare | -4/+18 | |
| compilation environment. | ||||
| 2011-03-01 | Populate default compilation environment as in rustboot. | Graydon Hoare | -3/+10 | |
