rust/src/libsyntax
Mark Rousskov 67d88f607e Remove constraints argument from path_all
It was never used
2019-09-21 15:01:39 -04:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr Rollup merge of #64066 - petrochenkov:softstab, r=matthewjasper 2019-09-08 00:07:31 +02:00
diagnostics Replace diagnostic plugins with macro_rules 2019-09-05 12:35:15 -04:00
ext Remove constraints argument from path_all 2019-09-21 15:01:39 -04:00
feature_gate feature_gate: Eliminate check::Context 2019-09-14 21:59:03 +03:00
mut_visit Aggregation of cosmetic changes made during work on REPL PRs: libsyntax 2019-09-07 16:29:04 +01:00
parse Give more Idents spans 2019-09-15 09:15:38 +01:00
print Print syntax contexts and marks when printing hygiene information 2019-09-17 21:23:33 +01: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 reduce visibility 2019-09-06 22:04:36 +03:00
ast.rs Print visibility of macro items 2019-09-15 10:22:13 +01: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 Merge Variant and Variant_ 2019-08-14 14:47:01 -03: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 Replace diagnostic plugins with macro_rules 2019-09-05 12:35:15 -04:00
json.rs Add terminal_width debugging flag 2019-08-21 11:58:24 -07:00
lib.rs Dont use gate bind_by_move_pattern_guards internally. 2019-09-08 01:27:10 +02:00
mut_visit.rs Resolve attributes in several places 2019-09-09 09:27:15 -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 Fix backticks in documentation 2019-09-18 23:17:36 -06:00
tests.rs Aggregation of cosmetic changes made during work on REPL PRs: libsyntax 2019-09-07 16:29:04 +01:00
tokenstream.rs Aggregation of cosmetic changes made during work on REPL PRs: libsyntax 2019-09-07 16:29:04 +01:00
visit.rs Apply suggestions from code review 2019-09-07 16:29:04 +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: