rust/src/libsyntax
2018-04-12 23:02:09 +03:00
..
diagnostics
ext AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
parse AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
print AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03: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 AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03: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 Rename ast::Variant_::name into ident + Fix rebase 2018-04-06 11:48:19 +03:00
diagnostic_list.rs
edition.rs
entry.rs
feature_gate.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
fold.rs AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
json.rs
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 Inject the compiler_builtins crate whenever the core crate is injected 2018-04-07 09:24:35 +02:00
str.rs
test_snippet.rs
test.rs Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
tokenstream.rs
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: