rust/src/libsyntax
2018-04-25 14:55:25 -07:00
..
diagnostics
ext rustc: Tweak custom attribute capabilities 2018-04-20 19:56:16 -07:00
parse Auto merge of #48946 - PramodBisht:issues/48636, r=estebank 2018-04-23 01:36:51 +00:00
print Auto merge of #49993 - nnethercote:shrink-Token, r=alexcrichton 2018-04-18 14:44:54 +00:00
util AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
abi.rs
ast.rs Auto merge of #49993 - nnethercote:shrink-Token, r=alexcrichton 2018-04-18 14:44:54 +00:00
attr.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
build.rs
Cargo.toml
codemap.rs
config.rs
diagnostic_list.rs
edition.rs add EDITIONS_NAME_LIST, make edition tracked, enforce that only stable editions are allowed to be used on non-nightly builds 2018-04-19 21:03:21 -07:00
entry.rs
feature_gate.rs Rollup merge of #49985 - zackmdavis:0, r=estebank 2018-04-24 11:57:07 +08:00
fold.rs AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
json.rs Approximate -> Applicability 2018-04-25 14:55:25 -07:00
lib.rs Auto merge of #49698 - SimonSapin:unicode-for-everyone, r=alexcrichton 2018-04-12 00:35:33 +00:00
ptr.rs
README.md
show_span.rs
std_inject.rs Reorder injection of std to get better compilation error 2018-04-16 12:28:30 -07:00
str.rs
test_snippet.rs
test.rs Don't allow #[should_panic] with non-() tests 2018-04-23 07:13:29 -07:00
tokenstream.rs proc_macro: Stay on the "use the cache" path more 2018-04-18 19:36:48 -07:00
visit.rs AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03: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: