rust/src/librustc_trans
bors 65b61ffb3f Auto merge of #21165 - alexcrichton:second-pass-type-id, r=aturon
This commit aims to stabilize the `TypeId` abstraction by moving it out of the
`intrinsics` module into the `any` module of the standard library. Specifically,

* `TypeId` is now defined at `std::any::TypeId`
* `TypeId::hash` has been removed in favor of an implementation of `Hash`.

This commit also performs a final pass over the `any` module, confirming the
following:

* `Any::get_type_id` remains unstable as *usage* of the `Any` trait will likely
  never require this, and the `Any` trait does not need to be implemented for
  any other types. As a result, this implementation detail can remain unstable
  until associated statics are implemented.
* `Any::downcast_ref` is now stable
* `Any::downcast_mut` is now stable
* `BoxAny` remains unstable. While a direct impl on `Box<Any>` is allowed today
  it does not allow downcasting of trait objects like `Box<Any + Send>` (those
  returned from `Thread::join`). This is covered by #18737.
* `BoxAny::downcast` is now stable.
2015-01-19 23:35:12 +00:00
..
back auto merge of #21113 : alexcrichton/rust/plug-a-hole, r=brson 2015-01-16 19:17:30 +00:00
save Merge pull request #21181 from nick29581/save-fix 2015-01-16 06:31:02 +00:00
trans Auto merge of #21165 - alexcrichton:second-pass-type-id, r=aturon 2015-01-19 23:35:12 +00:00
lib.rs Set allow(unstable) in crates that use unstable features 2015-01-17 16:38:04 -08:00
README.txt Move trans, back, driver, and back into a new crate, rustc_trans. Reduces memory usage significantly and opens opportunities for more parallel compilation. 2014-11-18 07:32:43 -05:00

See the README.txt in ../librustc.