| Age | Commit message (Expand) | Author | Lines |
| 2012-01-03 | Make resolution of dictionaries on bounded params work | Marijn Haverbeke | -6/+11 |
| 2012-01-03 | Wire in resolution of param bounds for method calls | Marijn Haverbeke | -15/+39 |
| 2012-01-03 | More work on translating dictionary-passing | Marijn Haverbeke | -158/+381 |
| 2012-01-02 | Properly handle expression blocks in kind.rs | Marijn Haverbeke | -3/+10 |
| 2012-01-02 | Write out vtables for interface implementations | Marijn Haverbeke | -13/+78 |
| 2012-01-02 | Drop two useless sub-passes from trans | Marijn Haverbeke | -98/+59 |
| 2012-01-02 | Create a trans_impl module | Marijn Haverbeke | -16/+19 |
| 2012-01-02 | Key tcx.ty_param_bounds on node_ids, not def_ids | Marijn Haverbeke | -8/+10 |
| 2012-01-02 | Box arrays of parameter bounds | Marijn Haverbeke | -37/+36 |
| 2012-01-02 | Pass bounds to trans::type_of_fn | Marijn Haverbeke | -50/+65 |
| 2012-01-02 | More resolving and typechecking of bounded type parameters. | Marijn Haverbeke | -55/+210 |
| 2012-01-02 | Check that type parameter bounds are interface types | Marijn Haverbeke | -33/+73 |
| 2012-01-02 | Make last-use pass properly handle closed-over variables | Marijn Haverbeke | -3/+18 |
| 2012-01-01 | freebsd support | User Jyyou | -0/+2 |
| 2011-12-29 | split proto from fn_decl, as not all fn_decls know the proto. | Niko Matsakis | -105/+114 |
| 2011-12-29 | list: use predicate to enforce non-empty requirement | Lenny222 | -2/+6 |
| 2011-12-29 | Box ty_param_bounds_and_ty | Marijn Haverbeke | -21/+21 |
| 2011-12-28 | On second thought, re-land pull request #1385 with backquotes; easier to grep... | Graydon Hoare | -27/+27 |
| 2011-12-28 | Merge pull request #1385 from Lenny222/quotes | Graydon Hoare | -29/+32 |
| 2011-12-28 | Move the kind datatype to middle::ty | Marijn Haverbeke | -22/+53 |
| 2011-12-28 | Change representation of type params to handle interface bounds | Marijn Haverbeke | -96/+151 |
| 2011-12-28 | Made matching machine types equal to float, int, uint (fixes #1376) | Stefan Plantikow | -1/+22 |
| 2011-12-25 | Use singlequotes in the typechecker too, to distinguish code and English | Lenny222 | -29/+32 |
| 2011-12-23 | Go back to a single visit_fn function in visit.rs | Marijn Haverbeke | -52/+54 |
| 2011-12-23 | Get rid of visit_fn_block in visit.rs | Marijn Haverbeke | -12/+1 |
| 2011-12-23 | Check impls methods against the type of their iface. | Marijn Haverbeke | -34/+77 |
| 2011-12-23 | Parse `iface` items and interface references in `impl` items. | Marijn Haverbeke | -61/+87 |
| 2011-12-23 | Use the same type of record in ty::ty_fn and ty::method | Marijn Haverbeke | -319/+222 |
| 2011-12-23 | Make ast::ty_method hold a fn_decl, rather than duplicating its fields | Marijn Haverbeke | -6/+6 |
| 2011-12-22 | Register new snapshots, purge log_err and log_full in favour of log(...). | Graydon Hoare | -32/+32 |
| 2011-12-22 | Merge all 3 log syntaxes, tidy up residual misuses. | Graydon Hoare | -37/+33 |
| 2011-12-22 | Merge branch 'master' of github.com:graydon/rust | Graydon Hoare | -164/+156 |
| 2011-12-22 | Register snapshots and switch logging over to use of log_full or #error / #de... | Graydon Hoare | -93/+100 |
| 2011-12-22 | Unify some data structures in syntax::ast that were doing the same thing | Marijn Haverbeke | -164/+156 |
| 2011-12-22 | Fix tag_var_cache to cache crate-external tags | Marijn Haverbeke | -41/+26 |
| 2011-12-22 | Do not use == and != to compare ty::t values | Marijn Haverbeke | -27/+45 |
| 2011-12-22 | Add ty::new_ty_hash, clean up comparing of ty::t's | Marijn Haverbeke | -48/+29 |
| 2011-12-22 | Remove trivial cast checker | Marijn Haverbeke | -91/+8 |
| 2011-12-21 | Switch log_expr to carrying a full expr:u32 for level. Add log_full variant t... | Graydon Hoare | -17/+21 |
| 2011-12-21 | valid cap clause for kind-ness too | Niko Matsakis | -12/+24 |
| 2011-12-21 | upgrade kind check | Niko Matsakis | -12/+52 |
| 2011-12-21 | update pprinter to understand ret type of block, add warnings | Niko Matsakis | -4/+14 |
| 2011-12-21 | Make { || ... } sugar for any type of closure, inferred | Niko Matsakis | -184/+289 |
| 2011-12-20 | Merge pull request #1350 from boggle/kmath | Graydon Hoare | -2/+1 |
| 2011-12-20 | Fix misleading comment about type_is_pod | Marijn Haverbeke | -1/+2 |
| 2011-12-20 | removed math leftovers from std | Stefan Plantikow | -2/+1 |
| 2011-12-20 | rustc: Cleanup unused ext_map | Haitao Li | -6/+3 |
| 2011-12-20 | rustc: Re-export the same name in different namespaces | Haitao Li | -12/+32 |
| 2011-12-20 | rustc: Implement re-export of renamed modules | Haitao Li | -1/+19 |
| 2011-12-19 | implement capture clauses (move, in particular) and integrate | Niko Matsakis | -53/+248 |