| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-11-17 | Rollup merge of #66381 - Centril:66340, r=petrochenkov | Yuki Okushi | -1/+4 | |
| find_deprecation: deprecation attr may be ill-formed meta. Fixes #66340. r? @petrochenkov cc @pnkfelix | ||||
| 2019-11-15 | find_deprecation: deprecation attr may be ill-formed meta. | Mazdak Farrokhzad | -1/+4 | |
| 2019-11-14 | Update to use new librustc_error_codes library | Guillaume Gomez | -0/+2 | |
| 2019-11-11 | support issue = "none" in unstable attributes | Ross MacArthur | -10/+21 | |
| - Use `Option<NonZeroU32>` to represent issue numbers. | ||||
| 2019-11-10 | move syntax::parse -> librustc_parse | Mazdak Farrokhzad | -4/+4 | |
| also move MACRO_ARGUMENTS -> librustc_parse | ||||
| 2019-11-10 | move config.rs to libsyntax_expand | Mazdak Farrokhzad | -1/+5 | |
| 2019-11-09 | move attr meta grammar to parse::validate_atr + ast_validation | Mazdak Farrokhzad | -87/+1 | |
| 2019-11-07 | syntax::attr: remove usage of lexer | Mazdak Farrokhzad | -3/+2 | |
| 2019-11-07 | move PResult to librustc_errors | Mazdak Farrokhzad | -1/+2 | |
| 2019-11-07 | syntax::parser::token -> syntax::token | Mazdak Farrokhzad | -1/+1 | |
| 2019-11-06 | Make doc comments cheaper with `AttrKind`. | Nicholas Nethercote | -35/+83 | |
| `AttrKind` is a new type with two variants, `Normal` and `DocComment`. It's a big performance win (over 10% in some cases) because `DocComment` lets doc comments (which are common) be represented very cheaply. `Attribute` gets some new helper methods to ease the transition: - `has_name()`: check if the attribute name matches a single `Symbol`; for `DocComment` variants it succeeds if the symbol is `sym::doc`. - `is_doc_comment()`: check if it has a `DocComment` kind. - `{get,unwrap}_normal_item()`: extract the item from a `Normal` variant; panic otherwise. Fixes #60935. | ||||
| 2019-11-06 | Remove unnecessary `Deref` impl for `Attribute`. | Nicholas Nethercote | -9/+9 | |
| This kind of thing just makes the code harder to read. | ||||
| 2019-10-27 | syntax/attr: reduce reliance on parser | Mazdak Farrokhzad | -27/+2 | |
| 2019-10-25 | move Attribute::with_desugared_doc to librustdoc | Mazdak Farrokhzad | -27/+2 | |
| 2019-10-21 | Remove many unnecessary trait derivations. | Nicholas Nethercote | -5/+4 | |
| 2019-10-18 | Change `MetaItem::tokens()` to `MetaItem::token_trees_and_joints()`. | Nicholas Nethercote | -17/+26 | |
| Likewise for `NestedMetaItem::tokens()`. Also, add `MetaItemKind::token_trees_and_joints()`, which `MetaItemKind::tokens()` now calls. This avoids some unnecessary `TokenTree` to `TokenStream` conversions, and removes the need for the clumsy `TokenStream::append_to_tree_and_joint_vec()`. | ||||
| 2019-10-18 | Change `Lit::tokens()` to `Lit::token_tree()`. | Nicholas Nethercote | -4/+5 | |
| Because most of the call sites have an easier time working with a `TokenTree` instead of a `TokenStream`. | ||||
| 2019-10-16 | move syntax::ext to new crate syntax_expand | Mazdak Farrokhzad | -2/+2 | |
| 2019-10-16 | attr: remove dep on ExtCtxt | Mazdak Farrokhzad | -9/+5 | |
| 2019-10-16 | syntax: reduce visibilities | Mazdak Farrokhzad | -3/+3 | |
| 2019-10-16 | syntax: extract parse_cfg_attr | Mazdak Farrokhzad | -1/+0 | |
| 2019-10-16 | syntax: extract parse_derive_paths | Mazdak Farrokhzad | -15/+3 | |
| 2019-10-15 | syntax::parse::sess -> syntax::sess | Mazdak Farrokhzad | -2/+3 | |
| 2019-10-14 | Rollup merge of #65261 - nnethercote:rm-Option-from-TokenStream, r=petrochenkov | Tyler Mandry | -1/+1 | |
| Remove `Option` from `TokenStream` A code simplification. r? @petrochenkov | ||||
| 2019-10-14 | Remove the `Option` in `TokenStream`. | Nicholas Nethercote | -1/+1 | |
| It means an allocation is required to create an empty `TokenStream`, but all other operations are simpler and marginally faster due to not having to check for `None`. Overall it simplifies the code for a negligible performance effect. The commit also removes `TokenStream::empty` by implementing `Default`, which is now possible. | ||||
| 2019-10-13 | ast: remove implicit pprust dependency via Display. | Mazdak Farrokhzad | -9/+25 | |
| Instead just use `pprust::path_to_string(..)` where needed. This has two benefits: a) The AST definition is now independent of printing it. (Therefore we get closer to extracting a data-crate.) b) Debugging should be easier as program flow is clearer. | ||||
| 2019-09-30 | syntax: Support modern attribute syntax in the `meta` matcher | Vadim Petrochenkov | -5/+11 | |
| 2019-09-30 | syntax: Split `ast::Attribute` into container and inner parts | Vadim Petrochenkov | -7/+7 | |
| 2019-09-26 | Rename `MetaItem.node` to `MetaItem.kind` | varkor | -25/+25 | |
| 2019-09-26 | Rename `Stmt.node` to `Stmt.kind` | varkor | -2/+2 | |
| 2019-09-26 | Rename `Lit.node` to `Lit.kind` | varkor | -8/+8 | |
| 2019-09-24 | Stabilize `str::len`, `[T]::len`, `is_empty` and `str::as_bytes` as const fn | Oliver Scherer | -0/+24 | |
| 2019-09-08 | Rollup merge of #64066 - petrochenkov:softstab, r=matthewjasper | Mazdak Farrokhzad | -16/+12 | |
| Support "soft" feature-gating using a lint Use it for feature-gating `#[bench]`. Closes https://github.com/rust-lang/rust/issues/63798. | ||||
| 2019-09-07 | Support "soft" feature-gating using a lint | Vadim Petrochenkov | -16/+12 | |
| Use it for feature-gating `#[bench]` | ||||
| 2019-09-07 | Aggregation of cosmetic changes made during work on REPL PRs: libsyntax | Alexander Regueiro | -21/+22 | |
| 2019-09-06 | Move injection of attributes from command line to `libsyntax_ext` | Vadim Petrochenkov | -46/+13 | |
| 2019-08-27 | Cleanup: Consistently use `Param` instead of `Arg` #62426 | Kevin Per | -1/+1 | |
| 2019-08-15 | `Ident::with_empty_ctxt` -> `Ident::with_dummy_span` | Vadim Petrochenkov | -2/+2 | |
| `Ident` has had a full span rather than just a `SyntaxContext` for a long time now. | ||||
| 2019-08-15 | Remove `Spanned` from `mk_name_value_item_str` and `expr_to_spanned_string` | Vadim Petrochenkov | -5/+7 | |
| 2019-08-14 | Merge Variant and Variant_ | Caio | -1/+1 | |
| 2019-08-05 | Make mk_attr_id private to libsyntax | Mark Rousskov | -1/+1 | |
| 2019-08-05 | Drop explicit span argument from mk_name_value_item | Mark Rousskov | -2/+3 | |
| 2019-08-05 | Drop span argument from mk_list_item | Mark Rousskov | -2/+2 | |
| 2019-07-31 | Replace AstBuilder with inherent methods | Mark Rousskov | -1/+0 | |
| 2019-07-31 | Remove span argument from mk_attr_{inner,outer} | Mark Rousskov | -4/+4 | |
| Always the same as the passed MetaItem | ||||
| 2019-07-31 | Remove Span argument from ExtCtxt::attribute | Mark Rousskov | -1/+1 | |
| MetaItem.span was always equivalent | ||||
| 2019-07-31 | Remove AttrId from Attribute constructors | Mark Rousskov | -14/+16 | |
| 2019-07-31 | Unify spanned and non-spanned Attribute ctors | Mark Rousskov | -14/+4 | |
| There is no difference in the code/arguments, so go with the shorter name throughout the code. | ||||
| 2019-07-25 | Rollup merge of #62735 - petrochenkov:galloc, r=alexcrichton | Mazdak Farrokhzad | -0/+97 | |
| Turn `#[global_allocator]` into a regular attribute macro It was a 99% macro with exception of some diagnostic details. As a result of the change, `#[global_allocator]` now works in nested modules and even in nameless blocks. Fixes https://github.com/rust-lang/rust/issues/44113 Fixes https://github.com/rust-lang/rust/issues/58072 | ||||
| 2019-07-24 | Demote template check error to a lint for `#[test]` and `#[bench]` | Vadim Petrochenkov | -1/+2 | |
