about summary refs log tree commit diff
path: root/src/librustc_plugin/registry.rs
AgeCommit message (Expand)AuthorLines
2019-11-17Rename directory `rustc_plugin` -> `rustc_plugin_impl`Vadim Petrochenkov-96/+0
2019-11-16rustc_plugin: Remove `Registry::register_attribute`Vadim Petrochenkov-13/+0
2019-11-09Remove `#[feature(custom_attribute)]`Vadim Petrochenkov-1/+0
2019-10-22Add some documentationMark Rousskov-0/+1
2019-10-17Create lint store during plugin registrationMark Rousskov-45/+5
2019-10-17Take lint passes as constructor functionsMark Rousskov-4/+4
2019-10-17Make get_lints be a static functionMark Rousskov-0/+9
2019-10-16move syntax::ext to new crate syntax_expandMazdak Farrokhzad-2/+2
2019-07-07syntax: Remove `NodeId` from `SyntaxExtension`Vadim Petrochenkov-4/+1
2019-07-04Rollup merge of #62258 - petrochenkov:idclean, r=CentrilMazdak Farrokhzad-4/+1
2019-07-03Remove needless lifetimesJeremy Stucki-1/+1
2019-07-01syntax: Unsupport `foo! bar { ... }` macros in the parserVadim Petrochenkov-4/+1
2019-06-18syntax: Factor out common fields from `SyntaxExtension` variantsVadim Petrochenkov-15/+7
2019-06-10syntax: Rename variants of `SyntaxExtension` for consistencyVadim Petrochenkov-4/+4
2019-06-10syntax: Remove `SyntaxExtension::DeclMacro`Vadim Petrochenkov-24/+7
2019-06-10syntax: Remove `SyntaxExtension::IdentTT` and `IdentMacroExpander`Vadim Petrochenkov-4/+1
2019-05-21Move `edition` outside the hygiene lock and avoid accessing itJohn Kåre Alsaker-2/+1
2019-05-13Remove the equality operation between `Symbol` and strings.Nicholas Nethercote-2/+2
2019-05-13Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions.Nicholas Nethercote-2/+2
2019-02-12Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnikbors-1/+1
2019-02-11Use `Rc<[Symbol]>` instead of `Vec<Symbol>` to reduce # of allocsOliver Scherer-1/+1
2019-02-11Rename the `exp` field to mirror its usesOliver Scherer-2/+2
2019-02-11Require a list of features to allow in `allow_internal_unstable`Oliver Scherer-3/+3
2019-02-10rustc: doc commentsAlexander Regueiro-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-07Unsupport `#[derive(Trait)]` sugar for `#[derive_Trait]` legacy plugin attrib...Vadim Petrochenkov-16/+0
2018-08-31Add deprecated_name argument to the register lint group functionsflip1995-3/+10
2018-08-28Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.Eduard-Mihai Burtescu-3/+3
2018-06-27Implement `#[macro_export(local_inner_macros)]`Vadim Petrochenkov-0/+3
2018-05-17Pass crate editions to macro expansions, update testsVadim Petrochenkov-2/+6
2018-05-05Misc tweaksJohn Kåre Alsaker-2/+0
2018-03-07check stability of macro invocationsAustin Bonander-2/+5
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-2/+2
2017-08-12syntax: #[allow_internal_unsafe] bypasses the unsafe_code lint in macros.Eduard-Mihai Burtescu-4/+18
2017-05-13Support #[allow] etc logic on a per macro levelest31-1/+2
2017-03-10Remove ability for plugins to register a MIR passSimonas Kazlauskas-11/+0
2016-12-23Allow legacy custom derive authors to disable warnings in downstream crates.Jeffrey Seyfried-0/+18
2016-11-21Cleanup `InternedString`.Jeffrey Seyfried-1/+1
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-2/+2
2016-10-31Changed most vec! invocations to use square bracesiirelu-5/+5
2016-09-26Forbid user-defined macros named "macro_rules".Jeffrey Seyfried-0/+3
2016-09-23reviewer comments and rebasingNick Cameron-6/+2
2016-09-22Adds a `ProcMacro` form of syntax extensionNick Cameron-0/+2
2016-09-15Remove `MacroRulesTT`.Jeffrey Seyfried-5/+1
2016-09-04Auto merge of #36240 - leeopop:master, r=jseyfriedbors-2/+2
2016-09-04Allow CompilerControllers to access rustc_plugin::registry::Registry structure.Keunhong Lee-2/+2
2016-09-02rustc: Implement custom derive (macros 1.1)Alex Crichton-1/+0
2016-08-25Implement RFC#1559: allow all literals in attributes.Sergio Benitez-3/+2
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+1
2016-05-10fix Registry::args for plugins loaded with --extra-pluginsOliver Schneider-2/+5