diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2017-11-22 17:39:46 -0500 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2017-12-07 05:28:00 -0500 |
| commit | 05441abd2bc1f0658aafa8b0161146fae34f7206 (patch) | |
| tree | 7a40029896dbf7f1e4ce38b2298896318fff8e1f /src/libsyntax | |
| parent | ab1c1bc6bc18b70818206e7f07ac5133239607ff (diff) | |
| download | rust-05441abd2bc1f0658aafa8b0161146fae34f7206.tar.gz rust-05441abd2bc1f0658aafa8b0161146fae34f7206.zip | |
add closure requirement tests, improve debugging output
The overall format is now easier to read. Also, There is now graphviz output, as well as a `#[rustc_regions]` annotation that dumps internal state.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index e5296e7d88c..22cef25320e 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -717,6 +717,12 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG is just used for rustc unit tests \ and will never be stable", cfg_fn!(rustc_attrs))), + ("rustc_regions", Normal, Gated(Stability::Unstable, + "rustc_attrs", + "the `#[rustc_regions]` attribute \ + is just used for rustc unit tests \ + and will never be stable", + cfg_fn!(rustc_attrs))), ("rustc_error", Whitelisted, Gated(Stability::Unstable, "rustc_attrs", "the `#[rustc_error]` attribute \ |
