| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-10-21 | Move hash table iteration over to block-taking functions | Marijn Haverbeke | -15/+10 | |
| Issue #1056 | ||||
| 2011-10-20 | Merge ast::proto_shared and ast::proto_closure | Brian Anderson | -2/+3 | |
| Now they are both just proto_shared and proto_shared takes an argument indicating that it is sugared as 'lambda' | ||||
| 2011-10-20 | Rename ast::proto_fn to ast::proto_shared | Brian Anderson | -2/+2 | |
| 2011-10-20 | Make fn denote a bare function. Convert fn to fn@ as needed | Brian Anderson | -4/+4 | |
| 2011-10-20 | Parse obj methods as proto_bare | Brian Anderson | -1/+1 | |
| I don't know if this is the right thing to do, but it works and it lets 'fn' always mean proto_bare | ||||
| 2011-10-12 | reimplement some of the unsafe stuff which got lost | Niko Matsakis | -19/+21 | |
| - blocks inherit unsafety - remove the --check-unsafe flag - add unsafe annotations where needed to get things to compile | ||||
| 2011-10-12 | add unsafe tags into various points in the translation chains | Niko Matsakis | -16/+18 | |
| and so forth | ||||
| 2011-10-12 | make native functions markable as unsafe and incorporate that | Niko Matsakis | -3/+11 | |
| into the type check | ||||
| 2011-10-12 | add 'u' to one other place it was missing | Niko Matsakis | -0/+1 | |
| 2011-10-12 | add 'u' to decoder (kinda' important) | Niko Matsakis | -0/+1 | |
| 2011-10-12 | Extend the unchecked block stuff to allow unsafe blocks as well. | Niko Matsakis | -0/+2 | |
| 2011-10-11 | Use the correct function type for external bare functions | Brian Anderson | -1/+1 | |
| Issue #1022 | ||||
| 2011-10-11 | Use a non-ambiguous character for encoding bare functions | Brian Anderson | -1/+6 | |
| I was using 'R' and that was already used for records. Issue #1022 | ||||
| 2011-10-11 | Introduce ast::proto_bare | Brian Anderson | -0/+1 | |
| Issue #1022 | ||||
| 2011-10-10 | Adjust function signatures to allow for vecs being immediate | Marijn Haverbeke | -2/+2 | |
| Some code was relying on vectors being implicitly by-reference (as non-immediate value). This adds the necessary &&-sigils. Closes #1021 | ||||
| 2011-10-07 | Parse and typecheck by-value and by-ref arg specs | Marijn Haverbeke | -11/+11 | |
| Add sprinkle && throughout the compiler to make it typecheck again. Issue #1008 | ||||
| 2011-10-04 | Use util::filesearch to locate intrinsics.bc and main.o | Brian Anderson | -0/+1 | |
| 2011-10-04 | Move the library search into util::filesearch | Brian Anderson | -25/+17 | |
| 2011-10-04 | Fix some comment drift | Brian Anderson | -2/+2 | |
| 2011-10-04 | Remove some redundancy in metadata::creader | Brian Anderson | -9/+8 | |
| 2011-10-04 | Encapsulate current sysroot and lib path handling into util::filesearch | Brian Anderson | -2/+2 | |
| 2011-10-03 | rustc: Implement C stack stdcall | Patrick Walton | -1/+4 | |
| 2011-09-30 | rustc: Track link_args attributes on C stack cdecl natives as well | Patrick Walton | -1/+2 | |
| 2011-09-28 | rustc: Add a new "C stack cdecl" native ABI | Patrick Walton | -0/+2 | |
| 2011-09-24 | Vectors containing pinned kinds become pinned | Brian Anderson | -1/+1 | |
| Otherwise they could be copied | ||||
| 2011-09-22 | Convert ty::ty_uniq to contain a mutable type | Brian Anderson | -2/+2 | |
| Issue #409 | ||||
| 2011-09-15 | Require the parameter that will be referenced to be noted | Marijn Haverbeke | -3/+7 | |
| Issue #918 | ||||
| 2011-09-15 | Insert omitted semicolons for statements | Marijn Haverbeke | -1/+1 | |
| 2011-09-14 | Add syntax and representation for return-by-mutably-rooted-ref | Marijn Haverbeke | -11/+11 | |
| This will be used in the near future to decide what can safely be done with the returned reference. Issue #918 | ||||
| 2011-09-14 | Make most of the compiler aware of return-by-reference | Marijn Haverbeke | -1/+4 | |
| tyencode/tydecode still don't know about it. return_ref will be extended to take arguments anyway. | ||||
| 2011-09-14 | Rename ast::controlflow to ast::ret_style | Marijn Haverbeke | -5/+4 | |
| It will include information about returning by alias. | ||||
| 2011-09-12 | Factor imports mindlessly. | Graydon Hoare | -48/+15 | |
| 2011-09-12 | Pretty-print for new arg-mode syntax | Marijn Haverbeke | -13/+10 | |
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -128/+124 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-09-12 | Make the names of the arg mode tag reflect their (revised) meaning | Marijn Haverbeke | -13/+6 | |
| 2011-09-02 | Rename istr-stuff to str in rustc. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-02 | Rename ty_istr to ty_str. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -203/+154 | |
| 2011-09-01 | Remove lots of estr code from rustc. Issue #855 | Brian Anderson | -3/+1 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -14/+14 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -39/+39 | |
| 2011-09-01 | Remove std::str. Issue #855 | Brian Anderson | -5/+0 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -30/+27 | |
| 2011-08-27 | Convert misc compiler bits to istrs. Issue #855 | Brian Anderson | -3/+3 | |
| 2011-08-27 | Convert rustc::driver::session to istrs. Issue #855 | Brian Anderson | -4/+5 | |
| 2011-08-27 | Convert pretty-printer to istrs. Issue #855 | Brian Anderson | -8/+13 | |
| 2011-08-27 | Convert rustc::util to istrs. Issue #855 | Brian Anderson | -1/+2 | |
| 2011-08-27 | Convert rustc::metadata to istrs. Issue #855 | Brian Anderson | -99/+111 | |
| 2011-08-27 | Convert rest of the AST to istrs. Issue #855 | Brian Anderson | -7/+12 | |
| 2011-08-27 | Convert crate_ctxt to istrs. Issue #855 | Brian Anderson | -2/+2 | |
