rust/src/libsyntax
Mazdak Farrokhzad 5910116b17
Rollup merge of #65892 - pnkfelix:trim-special-derives, r=petrochenkov
Remove `PartialEq` and `Eq` from the `SpecialDerives`.

Now that PR #65519 landed, this is the follow-on work of removing `PartialEq` and `Eq` from the set of `SpecialDerives` .
2019-11-06 03:28:05 +01:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr syntax/attr: reduce reliance on parser 2019-10-27 16:54:12 +01:00
diagnostics Replace diagnostic plugins with macro_rules 2019-09-05 12:35:15 -04:00
expand Review feedback: Remove more stuff! Simplify simplify simplify! 2019-11-05 14:59:29 +01:00
feature_gate syntax: disable the new early feature-gatings added in #65742. 2019-10-31 19:34:06 +02:00
json Fix the start/end byte positions in the compiler JSON output 2019-10-21 19:28:29 +03: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 #66025 - petrochenkov:lohi, r=eddyb 2019-11-05 14:37:01 +01: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 libsyntax: Document ast module 2019-10-26 06:56:11 +03:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Update bitflags 2019-10-25 23:26:27 +01:00
config.rs syntax/attr: reduce reliance on parser 2019-10-27 16:54:12 +01: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 Create new error E0743 2019-10-31 10:39:38 +01:00
json.rs Rollup merge of #65074 - Rantanen:json-byte-pos, r=matklad 2019-10-25 13:12:45 +02:00
lib.rs rustc, rustc_passes: don't depend on syntax_expand. 2019-10-27 17:05:57 +01: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 Do not complain about missing fn main() in some cases 2019-10-30 12:05:26 -07:00
show_span.rs Rename rustc_errors dependency in rust 2018 crates 2019-02-13 00:28:52 +09:00
source_map.rs Span cannot represent span.hi < span.lo 2019-11-01 23:40:07 +03:00
tests.rs Rollup merge of #65074 - Rantanen:json-byte-pos, r=matklad 2019-10-25 13:12:45 +02:00
tokenstream.rs Derive Rustc{En,De}codable for TokenStream. 2019-10-21 06:54:41 +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: