rust/src/libsyntax
2018-09-14 03:34:14 +00:00
..
attr Auto merge of #53902 - dtolnay:group, r=petrochenkov 2018-09-09 13:27:44 +00:00
diagnostics Use optimized SmallVec implementation 2018-08-23 10:45:53 +03:00
ext resolve: Put different parent scopes into a single structure 2018-09-13 05:10:45 +03:00
parse Don't compute padding of braces unless they are unmatched 2018-09-09 14:55:46 -07:00
print Auto merge of #53815 - F001:if-let-guard, r=petrochenkov 2018-09-01 20:31:29 +00:00
util Add some unit tests for find_best_match_for_name 2018-09-11 08:31:47 +02:00
ast.rs Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
build.rs
Cargo.toml Use optimized SmallVec implementation 2018-08-23 10:45:53 +03:00
config.rs Validate syntax of cfg attributes 2018-09-06 01:18:30 +03:00
diagnostic_list.rs Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
early_buffered_lints.rs make it a migration lint 2018-07-23 21:55:51 -05:00
entry.rs
feature_gate.rs introduce SelfCtor 2018-09-13 12:27:29 +08:00
fold.rs Track distinct spans for open and close delimiter 2018-09-08 19:01:48 -07:00
json.rs mv (mod) codemap source_map 2018-08-19 23:01:00 +02:00
lib.rs stabalize infer outlives requirements (RFC 2093). 2018-09-11 11:40:04 -04:00
ptr.rs Remove most of PartialEq impls from AST and HIR structures 2018-07-14 14:56:57 +03:00
README.md
show_span.rs
source_map.rs Auto merge of #53949 - estebank:unclosed-delim, r=nikomatsakis 2018-09-09 01:36:58 +00:00
std_inject.rs mv codemap source_map 2018-08-19 23:01:01 +02:00
str.rs
test_snippet.rs mv (mod) codemap source_map 2018-08-19 23:01:00 +02:00
test.rs Move #[test_case] to a syntax extension 2018-09-04 22:33:23 -07:00
tokenstream.rs Track distinct spans for open and close delimiter 2018-09-08 19:01:48 -07:00
visit.rs Auto merge of #53815 - F001:if-let-guard, r=petrochenkov 2018-09-01 20:31:29 +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: