rust/src/libsyntax
2019-07-25 12:36:51 -07:00
..
attr syntax: Migrate built-in macros to the regular stability checking 2019-07-07 13:04:07 +03:00
diagnostics Make register_[long_]diagnostics hygienic 2019-07-13 10:25:57 +01:00
ext Auto merge of #62008 - ia0:issues_61053, r=petrochenkov 2019-07-20 02:39:04 +00:00
parse review comments: add FIXME comments and formatting 2019-07-25 12:36:51 -07:00
print pprust: Support macro macros 2019-07-15 12:42:07 +03:00
util Introduce rustc_lexer 2019-07-20 21:12:34 +03:00
ast.rs Adjust other names after the Mark renaming 2019-07-19 12:01:49 +03:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Introduce rustc_lexer 2019-07-20 21:12:34 +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 Added the E0704 error with a link to the Rust reference. 2019-05-01 12:01:52 +02:00
feature_gate.rs add rustc_private as a proper language feature gate 2019-07-22 16:32:13 +03:00
json.rs syntax: Make def-site span mandatory in ExpnInfo/MacroBacktrace/DiagnosticSpanMacroExpansion 2019-07-11 00:12:07 +03:00
lib.rs Implement checks for meta-variables in macros 2019-07-19 19:59:12 +02:00
mut_visit.rs pprust: Fix formatting regressions from the previous commits 2019-07-15 12:42:07 +03:00
ptr.rs rustc: use a separate copy of P for HIR than for AST. 2019-07-01 14:34:34 +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 Rename some things in syntax_pos/hygiene 2019-07-11 00:12:07 +03:00
std_inject.rs libsyntax: Remove Mark into ExpnId 2019-07-19 12:01:48 +03:00
test.rs Adjust other names after the Mark renaming 2019-07-19 12:01:49 +03:00
test_snippet.rs Move edition outside the hygiene lock and avoid accessing it 2019-05-21 18:17:05 +02:00
tokenstream.rs Adjust other names after the Mark renaming 2019-07-19 12:01:49 +03:00
visit.rs Auto merge of #62075 - Centril:guardless-match-arms, r=petrochenkov 2019-06-24 05:00:10 +00: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: