rust/src/libsyntax
2018-06-20 12:23:08 +01:00
..
diagnostics Add Ident::as_str helper 2018-05-26 15:20:23 +03:00
ext Remove name from GenericParamKind::Lifetime 2018-06-20 12:23:08 +01:00
parse Remove name from GenericParamKind::Lifetime 2018-06-20 12:23:08 +01:00
print Remove name from GenericParamKind::Lifetime 2018-06-20 12:23:08 +01:00
util Use ParamBounds in WhereRegionPredicate 2018-06-20 12:23:07 +01:00
ast.rs Remove name from GenericParamKind::Lifetime 2018-06-20 12:23:08 +01:00
attr.rs Deny #[cfg] and #[cfg_attr] on generic parameters. 2018-06-02 05:11:33 +08:00
build.rs
Cargo.toml
codemap.rs Satisfy tidy 2018-05-21 18:43:11 +02:00
config.rs Deny #[cfg] and #[cfg_attr] on generic parameters. 2018-06-02 05:11:33 +08:00
diagnostic_list.rs Slightly better summary for E0538 2018-06-11 17:21:15 -07:00
entry.rs
feature_gate.rs Remove methods from ast::GenericParam and ast::Generics 2018-06-20 12:21:08 +01:00
fold.rs Lift bounds into GenericParam 2018-06-20 12:22:46 +01:00
json.rs Stabilize suggestion applicability field in json output 2018-05-21 10:48:12 -07:00
lib.rs Crate-ify and delete unused code in syntax::parse 2018-06-09 16:57:19 -06:00
ptr.rs
README.md
show_span.rs
std_inject.rs
str.rs
test_snippet.rs
test.rs Remove methods from ast::GenericParam and ast::Generics 2018-06-20 12:21:08 +01:00
tokenstream.rs
visit.rs Use ParamBounds in WhereRegionPredicate 2018-06-20 12:23:07 +01: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: