rust/src/libsyntax
Esteban Küber cba96613de fix test
2019-02-07 01:42:54 -08:00
..
attr libsyntax => 2018 2019-02-07 02:33:01 +09:00
diagnostics libsyntax => 2018 2019-02-07 02:33:01 +09:00
ext libsyntax => 2018 2019-02-07 02:33:01 +09:00
parse Remove unused match 2019-02-07 01:42:54 -08:00
print libsyntax => 2018 2019-02-07 02:33:01 +09:00
util fix test 2019-02-07 01:42:54 -08:00
ast.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml libsyntax => 2018 2019-02-07 02:33:01 +09:00
config.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
diagnostic_list.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
early_buffered_lints.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
entry.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
feature_gate.rs Auto merge of #57998 - niklasf:align-enum, r=nagisa 2019-02-07 04:26:08 +00:00
json.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
lib.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
mut_visit.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
ptr.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
show_span.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
source_map.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
std_inject.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
test.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
test_snippet.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
tokenstream.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
visit.rs libsyntax => 2018 2019-02-07 02:33:01 +09: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: