summary refs log tree commit diff
path: root/src/librustc_plugin/load.rs
AgeCommit message (Collapse)AuthorLines
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+1
2016-05-25rustc: use a simpler scheme for plugin registrar symbol names.Eduard Burtescu-1/+2
2016-04-22Remove the MacroVisitor pass.Leo Testard-17/+22
This pass was supposed to check use of gated features before `#[cfg]`-stripping but this was not the case since it in fact happens after. Checks that are actually important and must be done before macro expansion are now made where the features are actually used. Close #32648. Also ensure that attributes on macro-generated macro invocations are checked as well. Close #32782 and #32655.
2016-03-25Make the compiler emit an error if the crate graph contains two crates with ↵Michael Woerister-4/+7
the same crate-name and crate-salt but different SVHs.
2016-03-12std: Clean out deprecated APIsAlex Crichton-2/+1
Removes all unstable and deprecated APIs prior to the 1.8 release. All APIs that are deprecated in the 1.8 release are sticking around for the rest of this cycle. Some notable changes are: * The `dynamic_lib` module was moved into `rustc_back` as the compiler still relies on a few bits and pieces. * The `DebugTuple` formatter now special-cases an empty struct name with only one field to append a trailing comma.
2016-02-12Autoderef in librustc_pluginJonas Schievink-1/+1
2015-11-26split the metadata code into rustc_metadataAriel Ben-Yehuda-2/+2
tests & rustdoc still broken
2015-11-26move librustc/plugin to librustc_pluginAriel Ben-Yehuda-0/+146
this is a [breaking-change] to all plugin authors - sorry