rust/src/libsyntax
2019-10-21 20:59:18 +11:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr Remove many unnecessary trait derivations. 2019-10-21 20:59:18 +11:00
diagnostics Replace diagnostic plugins with macro_rules 2019-09-05 12:35:15 -04:00
feature_gate Rollup merge of #65498 - SimonSapin:plugin-help, r=Centril 2019-10-18 13:48:26 -07:00
mut_visit Aggregation of cosmetic changes made during work on REPL PRs: libsyntax 2019-09-07 16:29:04 +01:00
parse Rollup merge of #65552 - JohnTitor:use-bitwise-not, r=Dylan-DPC 2019-10-18 13:48:38 -07:00
print syntax::parse::sess -> syntax::sess 2019-10-15 09:41:58 +02:00
source_map Apply suggestions from code review 2019-09-07 16:29:04 +01:00
tokenstream syntax_pos: NO_EXPANSION/SyntaxContext::empty() -> SyntaxContext::root() 2019-08-15 20:38:12 +03:00
util Rename Expr.node to Expr.kind 2019-09-26 18:21:09 +01:00
ast.rs Remove many unnecessary trait derivations. 2019-10-21 20:59:18 +11:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml remove bit_set re-export from rustc_data_structures 2019-09-29 16:11:30 +00:00
config.rs move syntax::ext to new crate syntax_expand 2019-10-16 10:59:53 +02:00
early_buffered_lints.rs Warn if include macro fails to include entire file 2019-10-07 19:47:53 -04:00
entry.rs Rename Item.node to Item.kind 2019-09-26 18:21:48 +01:00
error_codes.rs Add long error explanation for E0584 2019-10-17 14:19:27 +02:00
json.rs Refactor: Rename db locals to diag 2019-10-15 08:19:43 +02:00
lib.rs move syntax::ext to new crate syntax_expand 2019-10-16 10:59:53 +02:00
mut_visit.rs Remove the Option in TokenStream. 2019-10-14 09:14:39 +11: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
sess.rs syntax::parse::sess -> syntax::sess 2019-10-15 09:41:58 +02:00
show_span.rs Rename rustc_errors dependency in rust 2018 crates 2019-02-13 00:28:52 +09:00
source_map.rs Remove many unnecessary trait derivations. 2019-10-21 20:59:18 +11:00
tests.rs panictry!(..) -> .unwrap() 2019-10-16 22:54:28 +02:00
tokenstream.rs Change MetaItem::tokens() to MetaItem::token_trees_and_joints(). 2019-10-18 13:25:17 +11:00
visit.rs Rename ForeignItem.node to ForeignItem.kind 2019-09-26 18:21:48 +01: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: