| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-01-03 | libsyntax: De-`@mut` `TtReader::repeat_idx` | Patrick Walton | -17/+29 | |
| 2014-01-03 | libsyntax: De-`@mut` `TtReader::interpolations` | Patrick Walton | -4/+9 | |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::peek_span` | Patrick Walton | -9/+10 | |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::peek_tok` | Patrick Walton | -10/+13 | |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::curr` | Patrick Walton | -76/+80 | |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::col` | Patrick Walton | -7/+7 | |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::last_pos` | Patrick Walton | -48/+54 | |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::pos` | Patrick Walton | -13/+14 | |
| 2014-01-03 | librustc: De-`@mut` the parse session | Patrick Walton | -45/+44 | |
| 2014-01-03 | libsyntax: De-`@mut` `ParseSess::included_mod_stack` | Patrick Walton | -16/+29 | |
| 2014-01-03 | auto merge of #11149 : alexcrichton/rust/remove-either, r=brson | bors | -37/+40 | |
| Had to change some stuff in typeck to bootstrap (getting methods in fmt off of Either), but other than that not so painful. Closes #9157 | ||||
| 2014-01-03 | Remove std::either | Alex Crichton | -37/+40 | |
| 2014-01-03 | auto merge of #11276 : brson/rust/0.9, r=pcwalton | bors | -1/+1 | |
| 2014-01-03 | auto merge of #11228 : sfackler/rust/syntaxenv, r=pcwalton | bors | -247/+129 | |
| I'd really like to be able to do something like ```rust struct MapChain<'next, K, V> { info: BlockInfo, map: HashMap<K, V>, next: Option<&'next mut MapChain<'next, K, V> } ``` but I can't get the lifetimes to work out. | ||||
| 2014-01-02 | libsyntax: Fix test and merge fallout. | Patrick Walton | -4/+4 | |
| 2014-01-02 | libsyntax: Long line | Patrick Walton | -1/+2 | |
| 2014-01-02 | libsyntax: Remove increasingly inaccurate comment | Patrick Walton | -1/+0 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::open_braces` | Patrick Walton | -5/+9 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::mod_path_stack` | Patrick Walton | -4/+3 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::obsolete_set` | Patrick Walton | -2/+2 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::restriction` | Patrick Walton | -7/+7 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::tokens_consumed` | Patrick Walton | -3/+3 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::buffer_start` and `Parser::buffer_end` | Patrick Walton | -13/+13 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::buffer` | Patrick Walton | -3/+3 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::last_token` | Patrick Walton | -3/+3 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::last_span` | Patrick Walton | -34/+32 | |
| 2014-01-02 | libsyntax: De-`@mut` `Parser::span` | Patrick Walton | -52/+54 | |
| 2014-01-02 | libsyntax: De-`@mut` `token` in the parser | Patrick Walton | -251/+251 | |
| 2014-01-02 | libsyntax: De-`@mut` `quote_depth` in the parser | Patrick Walton | -7/+7 | |
| 2014-01-02 | libsyntax: Make the parser mutable | Patrick Walton | -487/+518 | |
| 2014-01-02 | Bump version to 0.9 | Brian Anderson | -1/+1 | |
| 2014-01-02 | auto merge of #10696 : fhahn/rust/issue9543-remove-extern-mod-foo, r=pcwalton | bors | -13/+19 | |
| This patch for #9543 throws an `obsolete syntax` error for `extern mod foo (name="bar")` . I was wondering if [this](https://github.com/fhahn/rust/compare/mozilla:master...fhahn:issue9543-remove-extern-mod-foo?expand=1#diff-da9d34ca1d0f6beee2838cf02e07345cR4444) is the correct place to do this? I think the wording of the error message could probably be improved as well. If this approach is OK, I'm going to run the whole test suite tomorrow and update the old syntax to the new one. | ||||
| 2014-01-02 | Output columns 1-based. Fixes #10848 | Jan Niklas Hasse | -2/+2 | |
| 2014-01-01 | Remove `extern mod foo (name="bar")` syntax, closes #9543 | Florian Hahn | -13/+19 | |
| 2014-01-01 | auto merge of #11255 : klutzy/rust/small-cleanup, r=pcwalton | bors | -124/+92 | |
| This patchset removes some `@`s and unnecessary traits, and replaces a function (`dummy_sp()`) returning constant value by static variable. | ||||
| 2014-01-02 | syntax: expand impl_pretty_name to handle more cases. | Huon Wilson | -16/+61 | |
| The resulting symbol names aren't very pretty at all: trait Trait { fn method(&self); } impl<'a> Trait for ~[(&'a int, fn())] { fn method(&self) {} } gives Trait$$UP$$VEC$$TUP_2$$BP$int$$FN$$::method::...hash...::v0.0 However, at least it contain some reference to the Self type, unlike `Trait$__extensions__::method:...`, which is what the symbol name used to be for anything other than `impl Trait for foo::bar::Baz` (which became, and still becomes, `Trait$Baz::method`). | ||||
| 2014-01-01 | syntax::codemap: Add static DUMMY_SP | klutzy | -23/+20 | |
| It replaces `dummy_sp()`. | ||||
| 2014-01-01 | syntax::diagnostic: Remove @ from Emitter | klutzy | -12/+12 | |
| 2014-01-01 | syntax::diagnostic: Remove unnecessary traits | klutzy | -89/+60 | |
| This removes trait `handler` and `span_handler`, and renames `HandlerT` to `Handler`, `CodemapT` to `SpanHandler`. | ||||
| 2013-12-30 | Rewrite SyntaxEnv | Steven Fackler | -247/+129 | |
| I'd really like to be able to do something like struct MapChain<'next, K, V> { info: BlockInfo, map: HashMap<K, V>, next: Option<&'next mut MapChain<'next, K, V> } but I can't get the lifetimes to work out. | ||||
| 2013-12-30 | auto merge of #11182 : luisbg/rust/crateid, r=cmr | bors | -55/+55 | |
| Issue #11048 | ||||
| 2013-12-29 | Remove @muts from ExtCtxt | Steven Fackler | -20/+20 | |
| 2013-12-29 | Start passing around &mut ExtCtxt | Steven Fackler | -48/+49 | |
| 2013-12-29 | Make ast_fold take &mut self | Steven Fackler | -101/+102 | |
| 2013-12-29 | Rename PkgId to CrateId | Luis de Bethencourt | -53/+53 | |
| 2013-12-29 | Rename pkgid variables | Luis de Bethencourt | -2/+2 | |
| 2013-12-28 | Stop passing duplicate parameters in expand | Steven Fackler | -128/+92 | |
| 2013-12-28 | Remove unecessary extern "Rust" specifiers | Steven Fackler | -17/+8 | |
| 2013-12-28 | Stop using @ExtCtxt | Steven Fackler | -138/+138 | |
| 2013-12-26 | Register new snapshots | Alex Crichton | -2/+0 | |
