rust/src/libsyntax
2019-12-23 11:20:13 +00:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr Format the world 2019-12-22 17:42:47 -05:00
diagnostics Format the world 2019-12-22 17:42:47 -05:00
expand Format the world 2019-12-22 17:42:47 -05:00
feature_gate Format the world 2019-12-22 17:42:47 -05:00
print Add span information to ExprKind::Assign 2019-12-23 11:20:13 +00:00
util Add span information to ExprKind::Assign 2019-12-23 11:20:13 +00:00
ast.rs Add new folder for destructuring assignment tests 2019-12-23 11:20:13 +00:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Move early lint declarations to librustc_session 2019-12-03 12:19:14 -05:00
early_buffered_lints.rs Format the world 2019-12-22 17:42:47 -05:00
entry.rs Format the world 2019-12-22 17:42:47 -05:00
lib.rs Format the world 2019-12-22 17:42:47 -05:00
mut_visit.rs Add span information to ExprKind::Assign 2019-12-23 11:20:13 +00:00
ptr.rs Format the world 2019-12-22 17:42:47 -05:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
show_span.rs Format the world 2019-12-22 17:42:47 -05:00
token.rs Format the world 2019-12-22 17:42:47 -05:00
tokenstream.rs Format the world 2019-12-22 17:42:47 -05:00
visit.rs Add span information to ExprKind::Assign 2019-12-23 11:20:13 +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: