| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-10-25 | syntax/rustc_front: Simplify VariantData::fields | Vadim Petrochenkov | -6/+6 | |
| And use VariantData instead of P<VariantData> in Item_ and Variant_ | ||||
| 2015-10-20 | Auto merge of #29148 - petrochenkov:noshow, r=alexcrichton | bors | -5/+3 | |
| Closes https://github.com/rust-lang/rust/issues/29145 [breaking-change], needs a crater run. | ||||
| 2015-10-19 | Generate stability attributes for derived impls | Vadim Petrochenkov | -1/+1 | |
| The attributes are copied from the item for which the trait impl is derived | ||||
| 2015-10-18 | Remove #[derive(Show)] | Vadim Petrochenkov | -5/+3 | |
| 2015-10-16 | Auto merge of #29014 - petrochenkov:stability, r=brson | bors | -1/+1 | |
| Stricter checking of stability attributes + enforcement of their invariants at compile time (+ removed dead file librustc_front/attr.rs) I intended to enforce use of `reason` for unstable items as well (it normally presents for new items), but it turned out too intrusive, many older unstable items don't have `reason`s. r? @aturon I'm studying how stability works and do some refactoring along the way, so it's probably not the last PR. | ||||
| 2015-10-15 | Auto merge of #28980 - nrc:unsafe-macros, r=@pnkfelix | bors | -100/+0 | |
| This is a [breaking change]. @brson could you do a Crater run with this PR please? Lets not land till Crater says its OK. This was discussed at https://internals.rust-lang.org/t/does-anyone-use-the-push-pop-unsafe-macros/2702 | ||||
| 2015-10-13 | Merge VariantData and VariantData_ | Vadim Petrochenkov | -5/+4 | |
| 2015-10-13 | Merge struct fields and struct kind | Vadim Petrochenkov | -10/+13 | |
| 2015-10-13 | Dict -> Struct, StructDef -> VariantData, def -> data | Vadim Petrochenkov | -18/+18 | |
| 2015-10-13 | Remove now redundant NodeId from Variant | Vadim Petrochenkov | -1/+0 | |
| 2015-10-13 | Decouple structure kinds from NodeIds | Vadim Petrochenkov | -3/+7 | |
| 2015-10-13 | Unify structures and enum variants in AST | Vadim Petrochenkov | -84/+37 | |
| 2015-10-13 | Refactor attr::Stability | Vadim Petrochenkov | -1/+1 | |
| Stricter checking + enforcement of invariants at compile time | ||||
| 2015-10-12 | Remove the push_unsafe! and pop_unsafe! macros. | Nick Cameron | -100/+0 | |
| This is a [breaking change]. | ||||
| 2015-10-09 | Auto merge of #28857 - nrc:lowering, r=nikomatsakis | bors | -400/+75 | |
| r? @nikomatsakis | ||||
| 2015-10-09 | Some cleanup of no longer used AST things | Nick Cameron | -6/+3 | |
| 2015-10-09 | hygiene for `for` loops, `if let`, `while let` | Nick Cameron | -15/+72 | |
| and some unrelated test cleanups | ||||
| 2015-10-09 | Fix stability | Nick Cameron | -1/+1 | |
| 2015-10-09 | Move placement in desugaring to lowering | Nick Cameron | -154/+3 | |
| 2015-10-09 | if let and while let | Nick Cameron | -140/+4 | |
| 2015-10-09 | Move `for` loop desugaring to lowering | Nick Cameron | -94/+2 | |
| 2015-10-08 | typos: fix a grabbag of typos all over the place | Cristi Cobzarenco | -3/+3 | |
| 2015-10-06 | Add comment for the use of Ident in hash map in mtwt | Vadim Petrochenkov | -0/+2 | |
| 2015-10-03 | libsyntax: Do not derive Hash for Ident | Vadim Petrochenkov | -2/+2 | |
| 2015-10-01 | Stop re-exporting AttrStyle's variants and rename them. | Ms2ger | -3/+3 | |
| 2015-09-26 | Auto merge of #28642 - petrochenkov:name3, r=nrc | bors | -88/+76 | |
| This PR removes random remaining `Ident`s outside of libsyntax and performs general cleanup In particular, interfaces of `Name` and `Ident` are tidied up, `Name`s and `Ident`s being small `Copy` aggregates are always passed to functions by value, and `Ident`s are never used as keys in maps, because `Ident` comparisons are tricky. Although this PR closes https://github.com/rust-lang/rust/issues/6993 there's still work related to it: - `Name` can be made `NonZero` to compress numerous `Option<Name>`s and `Option<Ident>`s but it requires const unsafe functions. - Implementation of `PartialEq` on `Ident` should be eliminated and replaced with explicit hygienic, non-hygienic or member-wise comparisons. - Finally, large parts of AST can potentially be converted to `Name`s in the same way as HIR to clearly separate identifiers used in hygienic and non-hygienic contexts. r? @nrc | ||||
| 2015-09-24 | Cleanup interfaces of Name, SyntaxContext and Ident | Vadim Petrochenkov | -88/+76 | |
| Make sure Name, SyntaxContext and Ident are passed by value Make sure Idents don't serve as keys (or parts of keys) in maps, Ident comparison is not well defined | ||||
| 2015-09-24 | Remove the deprecated box(PLACE) syntax. | Eduard Burtescu | -2/+2 | |
| 2015-09-21 | Use ast::AsmDialect's variants qualified, and drop the pointless prefix. | Ms2ger | -2/+3 | |
| 2015-09-20 | Replace `ast::Mac_` enum with struct | Andrew Paseltiner | -88/+75 | |
| Closes #28527. | ||||
| 2015-09-20 | Move tts instead of cloning in expansion | Manish Goregaokar | -24/+25 | |
| 2015-09-17 | Remove Visibility field from enum variants | Simonas Kazlauskas | -1/+0 | |
| Followup on #28440 | ||||
| 2015-09-08 | Allow tracking issues for lang features. | Huon Wilson | -2/+10 | |
| This is similar to the libs version, which allow an `issue` field in the `#[unstable]` attribute. cc #28244 | ||||
| 2015-09-03 | Use consistent terminology for byte string literals | Vadim Petrochenkov | -3/+3 | |
| Avoid confusion with binary integer literals and binary operator expressions in libsyntax | ||||
| 2015-09-01 | Auto merge of #28137 - nrc:remove-non-multi, r=huonw | bors | -151/+2 | |
| This is a [breaking-change] for syntax extension authors. The fix is to use MultiModifier or MultiDecorator, which have the same functionality but are more flexible. Users of syntax extensions are unaffected. | ||||
| 2015-09-01 | Remove the Modifier and Decorator kinds of syntax extensions. | Nick Cameron | -151/+2 | |
| This is a [breaking-change] for syntax extension authors. The fix is to use MultiModifier or MultiDecorator, which have the same functionality but are more flexible. Users of syntax extensions are unaffected. | ||||
| 2015-08-31 | Closures are not generated code. | Nick Cameron | -4/+1 | |
| 2015-08-29 | Allow #[derive()] to generate unsafe trait impls | Michael Layzell | -1/+23 | |
| 2015-08-28 | Move ExpnInfo to Name | Manish Goregaokar | -19/+19 | |
| 2015-08-27 | Enumify CompilerExpansion in ExpnInfo | Manish Goregaokar | -36/+27 | |
| 2015-08-24 | Auto merge of #27239 - apasel422:issue-19102, r=huonw | bors | -1/+7 | |
| closes #19102 | ||||
| 2015-08-19 | Auto merge of #27849 - jonas-schievink:macro-errors, r=nikomatsakis | bors | -46/+50 | |
| And some small indentation/code style fixes in the macro parser. | ||||
| 2015-08-17 | feature gate `cfg(target_feature)`. | Huon Wilson | -8/+15 | |
| This is theoretically a breaking change, but GitHub search turns up no uses of it, and most non-built-in cfg's are passed via cargo features, which look like `feature = "..."`, and hence can't overlap. | ||||
| 2015-08-17 | Implement `repr(simd)` as an alias for `#[simd]`. | Huon Wilson | -1/+1 | |
| 2015-08-15 | Slightly improved macro diagnostics + Indentation fixes | Jonas Schievink | -46/+50 | |
| 2015-08-15 | Auto merge of #27827 - w00ns:for-loop-expn-issue-27639, r=alexcrichton | bors | -10/+1 | |
| Fixes #27639 | ||||
| 2015-08-15 | Fix issue with for loop expansion | w00ns | -10/+1 | |
| 2015-08-15 | Fix span of invalid metavariable repetition | Jonas Schievink | -1/+1 | |
| 2015-08-12 | Auto merge of #27691 - jonas-schievink:for-macro, r=alexcrichton | bors | -1/+1 | |
| Closes #27004 | ||||
| 2015-08-12 | Fix macro expansion in for loop pattern | Jonas Schievink | -1/+1 | |
