rust/src/libsyntax
bors cf048cc115 Auto merge of #63207 - petrochenkov:outest2, r=Mark-Simulacrum
Unconfigure compiler unit test files during normal build

I haven't touched libstd though, it had a lot of tests and I'm not sure the people maintaining it want this.

Closes https://github.com/rust-lang/rust/issues/61097
r? @Mark-Simulacrum
2019-08-02 15:22:50 +00:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr Rollup merge of #62735 - petrochenkov:galloc, r=alexcrichton 2019-07-25 23:21:00 +02:00
diagnostics Remove lint annotations in specific crates that are already enforced by rustbuild 2019-07-28 18:46:24 +03:00
ext Allow trailing comma in macro 2.0 declarations. 2019-08-01 21:07:47 +01:00
mut_visit libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
parse Auto merge of #63207 - petrochenkov:outest2, r=Mark-Simulacrum 2019-08-02 15:22:50 +00:00
print Remove some more cfg(test)s 2019-08-02 02:40:01 +03:00
source_map libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
tokenstream libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
util libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
ast.rs libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml cleanup: Remove extern crate serialize as rustc_serializes 2019-07-23 19:20:16 +03:00
config.rs Lint on 'cfg_attr(,).' 2019-06-22 12:11:01 +02:00
early_buffered_lints.rs Implement checks for meta-variables in macros 2019-07-19 19:59:12 +02:00
entry.rs Remove the equality operation between Symbol and strings. 2019-05-13 09:31:30 +10:00
error_codes.rs Remove lint annotations in specific crates that are already enforced by rustbuild 2019-07-28 18:46:24 +03:00
feature_gate.rs Rollup merge of #63095 - Centril:incomplete-features-lint, r=varkor 2019-07-30 22:43:34 +02:00
json.rs Remove lint annotations in specific crates that are already enforced by rustbuild 2019-07-28 18:46:24 +03:00
lib.rs libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
mut_visit.rs libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
ptr.rs cleanup: Remove extern crate serialize as rustc_serializes 2019-07-23 19:20:16 +03: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
source_map.rs libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
tests.rs libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
tokenstream.rs libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
visit.rs Unsupport the await!(..) macro. 2019-07-30 10:55:45 +02: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: