]> git.lizzy.rs Git - rust.git/commit
Add stability inheritance
authorAaron Turon <aturon@mozilla.com>
Thu, 12 Jun 2014 00:23:11 +0000 (17:23 -0700)
committerAaron Turon <aturon@mozilla.com>
Thu, 19 Jun 2014 05:22:26 +0000 (22:22 -0700)
commit6008f2c98276be3b880a5a75a0ac234cd866800e
tree5f420c6d2d216182c49a1ea6ed122cf6451ca705
parentf05cd6e04e62651ec95a3ae66906399d7c0092a1
Add stability inheritance

This commit makes several changes to the stability index infrastructure:

* Stability levels are now inherited lexically, i.e., each item's
  stability level becomes the default for any nested items.

* The computed stability level for an item is stored as part of the
  metadata. When using an item from an external crate, this data is
  looked up and cached.

* The stability lint works from the computed stability level, rather
  than manual stability attribute annotations. However, the lint still
  checks only a limited set of item uses (e.g., it does not check every
  component of a path on import). This will be addressed in a later PR,
  as part of issue #8962.

* The stability lint only applies to items originating from external
  crates, since the stability index is intended as a promise to
  downstream crates.

* The "experimental" lint is now _allow_ by default. This is because
  almost all existing crates have been marked "experimental", pending
  library stabilization. With inheritance in place, this would generate
  a massive explosion of warnings for every Rust program.

  The lint should be changed back to deny-by-default after library
  stabilization is complete.

* The "deprecated" lint still warns by default.

The net result: we can begin tracking stability index for the standard
libraries as we stabilize, without impacting most clients.

Closes #13540.
15 files changed:
src/doc/rust.md
src/librustc/driver/driver.rs
src/librustc/lib.rs
src/librustc/metadata/common.rs
src/librustc/metadata/csearch.rs
src/librustc/metadata/decoder.rs
src/librustc/metadata/encoder.rs
src/librustc/middle/lint.rs
src/librustc/middle/stability.rs [new file with mode: 0644]
src/librustc/middle/ty.rs
src/libsyntax/attr.rs
src/test/auxiliary/inherited_stability.rs [new file with mode: 0644]
src/test/auxiliary/lint_output_format.rs [new file with mode: 0755]
src/test/compile-fail/lint-output-format.rs
src/test/compile-fail/lint-stability.rs