rust/src/libsyntax
Vadim Petrochenkov 300b6bb417 Remove macro_reexport
It's subsumed by `feature(use_extern_macros)` and `pub use`
2018-05-01 15:58:42 +03:00
..
diagnostics
ext Auto merge of #50092 - abonander:issue-49934, r=petrochenkov 2018-04-30 00:18:49 +00:00
parse Auto merge of #50155 - est31:label_expressions, r=petrochenkov 2018-04-28 10:08:56 +00:00
print rustc_target: move in syntax::abi and flip dependency. 2018-04-26 17:49:16 +03:00
util
ast.rs Auto merge of #50092 - abonander:issue-49934, r=petrochenkov 2018-04-30 00:18:49 +00:00
attr.rs Add error when using repr(align=x) instead of repr(align(x)) 2018-04-29 18:42:43 +01:00
build.rs
Cargo.toml rustc_target: move in syntax::abi and flip dependency. 2018-04-26 17:49:16 +03:00
codemap.rs
config.rs
diagnostic_list.rs Add error when using repr(align=x) instead of repr(align(x)) 2018-04-29 18:42:43 +01:00
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 Remove macro_reexport 2018-05-01 15:58:42 +03:00
fold.rs
json.rs Approximate -> Applicability 2018-04-25 14:55:25 -07:00
lib.rs rustc_target: move in syntax::abi and flip dependency. 2018-04-26 17:49:16 +03:00
ptr.rs
README.md
show_span.rs
std_inject.rs
str.rs
test_snippet.rs
test.rs Fixed tidy errors. 2018-04-26 17:49:24 +03:00
tokenstream.rs proc_macro: Stay on the "use the cache" path more 2018-04-18 19:36:48 -07:00
visit.rs rustc_target: move in syntax::abi and flip dependency. 2018-04-26 17:49:16 +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: