rust/src/libsyntax
bors 6f829840f7 Auto merge of #67224 - nikomatsakis:revert-stabilization-of-never-type, r=centril
Revert stabilization of never type

Fixes https://github.com/rust-lang/rust/issues/66757

I decided to keep the separate `never-type-fallback` feature gate, but tried to otherwise revert https://github.com/rust-lang/rust/pull/65355. Seemed pretty clean.

( cc @Centril, author of #65355, you may want to check this over briefly )
2019-12-14 22:02:59 +00:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr Require stable/unstable annotations for the constness of all stable functions with a const modifier 2019-12-13 11:27:02 +01:00
diagnostics Update to use new librustc_error_codes library 2019-11-14 13:05:42 +01:00
expand rustc_metadata: Move has_global_allocator from session to cstore 2019-11-28 20:59:57 +03:00
feature_gate Revert "Stabilize the never_type, written !." 2019-12-14 09:01:09 -05:00
print Print the visibility in print_variant. 2019-12-07 05:59:41 +01:00
util Use to_option in various places 2019-12-06 12:23:23 +00:00
ast.rs Make ForeignItem an alias of Item. 2019-12-07 06:05:25 +01:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Move early lint declarations to librustc_session 2019-12-03 12:19:14 -05:00
early_buffered_lints.rs Move BufferedEarlyLint to librustc_session 2019-12-03 12:19:16 -05:00
entry.rs Rename Item.node to Item.kind 2019-09-26 18:21:48 +01:00
lib.rs Use to_option in various places 2019-12-06 12:23:23 +00:00
mut_visit.rs Make ForeignItem an alias of Item. 2019-12-07 06:05:25 +01:00
ptr.rs Remove many unnecessary trait derivations. 2019-10-21 20:59:18 +11:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
show_span.rs Rename rustc_errors dependency in rust 2018 crates 2019-02-13 00:28:52 +09:00
token.rs Derive HashStable for TokenKind. 2019-11-23 18:52:23 +01:00
tokenstream.rs syntax: Remove redundant span from ast::Mac 2019-12-02 21:56:34 +03:00
visit.rs syntax: Use ast::MacArgs for attributes 2019-12-02 21:56:34 +03:00

The syntax crate contains those things concerned purely with syntax that is, the AST ("abstract syntax tree"), parser, pretty-printer, lexer, macro expander, and utilities for traversing ASTs.

For more information about how these things work in rustc, see the rustc guide: